ROS Troubleshooting - olinrobotics/avatar GitHub Wiki
- wrong file path
- Try: sourcing setup file (ref)
source /opt/ros/indigo/setup.bash
- Workaround: #
In a CMake project
$ mkdir build
$ cd build
$ cmake ..
$ make
$ make install # (optionally)
(found that CMake was not installed sudo apt-get cmake
)
- Try: correct file path
source /devel/setup.bash
of the following names:
std_msgsConfig.cmake
std_msgs-config.cmake
- (ref)[http://answers.ros.org/question/183212/error-during-catkin_make/]
- (ref)[http://answers.ros.org/question/156696/catkin_make-error-while-building-rospackage-beginner-tutorial/]
- Try: fix typo in package.xml
-
Fix: reinstalling/installing std_msgs:
sudo apt-get install ros-<distro>-std-msgs
- to find names for other ros packages, use
sudo apt-cache search ros-<distro>
- Try: Reinstalling ros
$ sudo apt-get ros-indigo-catkin
(when running catkin_make)
- This is an error in the package.xml
- Try: not specifying package format so tag is just
<package></package>
(When running catkin_make)
- An error in package.xml
- The version number convention is as follows: MAJOR.MINOR.PATCH