공부중

[ROS2] package not found searching '/opt/ros/humble' 본문

프로그래밍/ROS

[ROS2] package not found searching '/opt/ros/humble'

복습 2024. 10. 2. 22:53
728x90
$ colcon build

후 발생하는 아래와 같은 문제.. 

 

package not found searching '/opt/ros/humble'

package not found searching '/opt/ros/foxy'

 

이런 오류.. 해결방법.. 

 

$ cd /path/to/workspace_root/
##e.g ~/ros2_ws/
$ colcon build

 

$ source /path/to/ros2_ws/install/setup.bash

 

$ echo "source /path/to/ros2_ws/install/setup.bash" >> ~/.bashrc

 

 

 

 

 

 

 

 

 

 

 

 

728x90