上一页 1 2 3 4 5 6 7 ··· 10 下一页
摘要: 一、git clone git clone默认会把整个仓库克隆下来,但是只会在本地创建默认分支。 使用git checkout -b dev origin/dev 可以根据远程的dev分支,创建本地的dev分支,并切换过去。 二、服务器更换了IP 1、找到项目根目录中的.git文件夹 2、.git文 阅读全文
posted @ 2023-01-18 17:50 chenjian688 阅读(38) 评论(0) 推荐(0)
摘要: 一、推荐软件1 sudo snap install qtcreator-ros --classic 阅读全文
posted @ 2023-01-05 10:39 chenjian688 阅读(90) 评论(0) 推荐(0)
摘要: 一、常见错误 /usr/include/eigen3/unsupported/Eigen/src/Splines/SplineFwd.h:13:10: fatal error: Eigen/Core: 没有那个文件或目录 因为 Eigen 库默认安装在了 /usr/include/eigen3/Ei 阅读全文
posted @ 2022-11-04 11:37 chenjian688 阅读(277) 评论(0) 推荐(0)
摘要: 一、项目地址 https://github.com/esmini/esmini 二、项目下载 除了直接下载源码编译外,我们还可以直接下载编译好的工程,直接运行就行 三、程序的运行 1、服务器运行附加指令, 查看esmin-demo/docs/commands.txt文件 2、手动控制服务器里面的车 阅读全文
posted @ 2022-10-20 09:16 chenjian688 阅读(1000) 评论(0) 推荐(0)
摘要: 一、简介 update-alternatives 是ubuntu提供的管理多个版本软件的工具,我们可以用来管理不同的软件版本(即设置默认的版本),比如gcc、g++、Python、clang等 update-alternatives 命令中的几个主要选项,diplay、install、remove、 阅读全文
posted @ 2022-09-11 18:04 chenjian688 阅读(699) 评论(0) 推荐(0)
摘要: 一、简介 llvm是一个编译器框架 LLVM项目包含有很多小的子项目,他们之间的作用和依赖关系: LLVM :总的框架和工具链 clang : 编译器 libc : c标准库 libcxx :c++标准库 libcxxabi : c++ 标准库ABI(二进制兼容接口) libunwind :栈展开库 阅读全文
posted @ 2022-09-11 17:53 chenjian688 阅读(143) 评论(0) 推荐(0)
摘要: 简介: rospy中没有spinonce()函数。而且rospy.spin()函数的功能也与c++中不同。该函数只是当节点停止时让python程序退出,显然和C++ spin的作用不同。回调函数有其自己的处理线程 阅读全文
posted @ 2022-09-09 10:49 chenjian688 阅读(532) 评论(0) 推荐(0)
摘要: sudo apt install python-is-python3 #临时使用pip的其他源 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple xxx 阅读全文
posted @ 2022-08-28 18:24 chenjian688 阅读(536) 评论(0) 推荐(0)
摘要: 一、简介 虽然今天已经是2022年8月25日,Ubuntu已经发布到了22.04。但是为了减少不必要的麻烦,我们还是使用官网推荐的Ubuntu18.04系统来编译Carla源码。 首先,请先查看官网教程https://carla.readthedocs.io/en/0.9.13/build_linu 阅读全文
posted @ 2022-08-25 13:59 chenjian688 阅读(2544) 评论(0) 推荐(0)
摘要: 一、简介 ros2的humble版本是支持ubuntu22.04 的长期版本。Ubuntu22.04和ros2 humble搭配使用。此Ubuntu版本没有官方支持的ros1 二、更新系统软件源 #1.备份Ubuntu源 sudo cp /etc/apt/sources.list /etc/apt/ 阅读全文
posted @ 2022-08-08 14:54 chenjian688 阅读(3757) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 10 下一页