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"
相关推荐
kyle~11 小时前
ROS2---QoS策略
c++·机器人·ros2
lucky-billy2 天前
Ubuntu 下一键部署 ROS2
linux·ubuntu·ros2
曦云沐4 天前
一键部署ROS2开发环境!Docker run命令详解与实战
docker·容器·ros2
维度攻城狮10 天前
交互式机器人编程:使用Jupyter Notebook运行ROS2程序
jupyter·机器人·ros2
wzyannn12 天前
Ubuntu24.04下ROS2和MoveIt2控制六轴机械臂(持续更新)
ros·机械臂·ros2
小屁猪qAq12 天前
ROS2 节点中使用参数
开发语言·c++·参数·ros2
WWZZ202513 天前
Isaac Sim入门——基础用法
机器人·大模型·机械臂·ros2·具身智能·isaac sim
General_G14 天前
ROS2资源汇总
linux·机器人·ros2
-点灯-21 天前
【无标题】
ros2
General_G21 天前
irobot_benchmark的编译和使用
linux·中间件·机器人·ros2