ros|DAY02+ROS工作空间创建

【ros|DAY02+ROS工作空间创建】1.创建工作空间
mkdir -p demo01_ws/src
ros|DAY02+ROS工作空间创建
文章图片

lzj@lzj-VirtualBox:~$ mkdir -p demo01_ws/src
lzj@lzj-VirtualBox:~$ cd demo01_ws/
lzj@lzj-VirtualBox:~/demo01_ws$ catkin_make
ros|DAY02+ROS工作空间创建
文章图片

进入 src 创建 ros 包并添加依赖
lzj@lzj-VirtualBox:~/demo01_ws$ cd
lzj@lzj-VirtualBox:~$ cd demo01_ws/
lzj@lzj-VirtualBox:~/demo01_ws$ cd src
lzj@lzj-VirtualBox:~/demo01_ws/src$ catkin_create_pkg helloworld roscpp rospy std_msg
Created file helloworld/package.xml
Created file helloworld/CMakeLists.txt
Created folder helloworld/include/helloworld
Created folder helloworld/src
Successfully created files in /home/lzj/demo01_ws/src/helloworld. Please adjust the values in package.xml.
ros|DAY02+ROS工作空间创建
文章图片

ros|DAY02+ROS工作空间创建
文章图片

    推荐阅读