ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
So it looks like you have an extra trailing slash at the end of /opt/ros/cturtle/jason/
. Try just using: export ROS_PACKAGE_PATH=/opt/ros/cturtle/jason:$ROS_PACKAGE_PATH
Also, two more things: you may want to not place your own packages in /opt/. It may be easier permission wise to place things in say: /home/jason/stacks
And don't forget that you can place the export command in your .bashrc (/home/your_name/.bashrc
) so that you don't have to type it in every terminal.
2 | No.2 Revision |
So it looks like you have an extra trailing slash at the end of /opt/ros/cturtle/jason/
. Try just using: export ROS_PACKAGE_PATH=/opt/ros/cturtle/jason:$ROS_PACKAGE_PATH
Also, two more things: you may want to not place your own packages in /opt/. It may be easier permission wise to place things in say: /home/jason/stacks
And don't forget that you can place the export command in your .bashrc (/home/your_name/.bashrc
) so that you don't have to type it in every terminal.new terminal you open.