ERROR: your rosdep installation has not been initialized yet. Please run: rosdep update
时间: 2024-01-18 10:50:15 浏览: 367
解决ROS的rosdep update错误问题
3星 · 编辑精心推荐
This error message indicates that your ROS environment is not properly set up and initialized. To resolve this issue, you need to run the following command in your terminal:
```
sudo rosdep init
rosdep update
```
The first command initializes the rosdep system on your machine, while the second command updates the package dependencies for your ROS distribution. After running these commands, your ROS environment should be properly set up and the error message should disappear.
阅读全文