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"
相关推荐
sunshine~~~14 小时前
【笔记】macOs arm架构安装虚拟机Ubuntu环境:ROS2 + Python开发
arm开发·笔记·python·macos·ros2
困鲲鲲3 天前
ROS2系列 (6) : 多功能包工作空间(Workspace)最佳实践
ros2
求索小沈3 天前
ubuntu22.04 ros2 fast_lio2 复现
slam·ros2·重定位·建图·mid360·fast_lio2
CH_Qing5 天前
【ROS2】驱动开发-雷达篇
人工智能·ros2·1024程序员节
武子康8 天前
AI研究-109-具身智能 机器人模型验证SOP流程详解|仿真 现实 回放 模板&理论
人工智能·机器人·强化学习·ros2·具身智能·仿真测试·a/b测试
辰尘_星启13 天前
【ROS2】IDL(Interface Definition Language)语法解析和使用
ros2·idl
悠哉悠哉愿意20 天前
【智能系统项目开发与学习记录】bringup功能包详解
学习·机器人·ros2
悠哉悠哉愿意24 天前
【ROS2学习笔记】URDF 机器人建模
笔记·学习·机器人·ros2
悠哉悠哉愿意25 天前
【ROS2学习笔记】 TF 坐标系
笔记·学习·ros2