ROS2 Windows安装

这里写自定义目录标题

ROS2下载

复制代码
https://github.com/ros2/ros2/releases
  • 下载解压后放到 c:\opt\ros2\humble

源码依赖列表

项目 Value
console_bridge https://github.com/ros/console_bridge.git
angles https://github.com/ros/angles.git -b humble
bullet https://github.com/bulletphysics/bullet3.git
eigen_stl_containers https://github.com/ros/eigen_stl_containers.git -b humble
ccd https://github.com/danfis/libccd.git
fcl https://github.com/flexible-collision-library/fcl.git
generate_parameter_library https://github.com/PickNikRobotics/generate_parameter_library.git
moveit_ros_planning_interface git clone https://github.com/ros-planning/moveit2.git -b humble

依赖下载并编译

依赖下载

复制代码
git clone https://github.com/bulletphysics/bullet3.git -b 2.87  #  checkout 到 2.87 版本
cd bullet3

编译

复制代码
mkdir build && cd build
cmake .. -G "Visual Studio 16 2019" -A x64 -DCMAKE_INSTALL_PREFIX=C:\opt\ros2\humble
cmake --build . --config Release --target install

编译MoveIt

复制代码
colcon build --merge-install --cmake-args -DBULLET_INCLUDE_DIR="C:\ProgramData\chocolatey\lib\bullet\include" -DBULLET_LIBRARY_DIR="C:\ProgramData\chocolatey\lib\bullet\lib"
相关推荐
无人装备硬件开发爱好者6 小时前
ROS2:无人机从 “能飞” 到 “会思考” 的全栈技术引擎 —— 深度拆解与落地指南(上)
无人机·ros2·无人机飞控
MIXLLRED1 天前
Ubuntu 22.04/ROS2 Humble下使用Intel RealSense D435i相机
ubuntu·d435i·ros2·深度相机
花花少年3 天前
ROS2常用指令(附 ROS1 & ROS2 对照表)
ros2
阿豪只会阿巴4 天前
【多喝热水系列】从零开始的ROS2之旅——Day5
c++·笔记·python·ubuntu·ros2
维度攻城狮8 天前
ros2参数通信案例
开发语言·windows·python·ros2·参数通信
zylyehuo9 天前
Ubuntu22.04(ROS2 humble)小车仿真环境搭建
ros2·导航
阿豪只会阿巴9 天前
【多喝热水系列】从零开始的ROS2之旅——Day3
linux·笔记·ubuntu·ros2
阿豪只会阿巴9 天前
【多喝热水系列】从零开始的ROS2之旅——Day4
c++·笔记·python·ros2
撬动未来的支点9 天前
【ROS2速通】资料,笔记攻略
ros2
社会零时工10 天前
【ROS2】海康相机ROS2设备服务节点开发
linux·c++·相机·ros2