bash: /home/eaibot/eairos_ws/devel/setup.bash: No such file or directory
时间: 2023-10-05 19:05:57 浏览: 133
解决-BASH: /HOME/JAVA/JDK1.8.0_221/BIN/JAVA: 权限不够问题
This error message is indicating that the file "setup.bash" does not exist in the specified directory "/home/eaibot/eairos_ws/devel/". This could be due to a few reasons:
1. The directory path is incorrect: Double-check the directory path to make sure it is correct.
2. The file was not generated: If you recently created a new workspace or package, make sure to run the "catkin_make" command to generate the necessary files.
3. The file was deleted: If the file was previously generated and has since been deleted, you will need to regenerate it by running "catkin_make" again.
Once you have confirmed that the file exists in the correct directory, you can source it by running the following command in your terminal:
source /home/eaibot/eairos_ws/devel/setup.bash
This will set the necessary environment variables for your ROS workspace.
阅读全文