ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Maybe this link can help: https://github.com/ros/catkin/issues/175

I ended up downloading the sources and installing manually using

$ sudo python setup.py install

But I needed an install from source anyway.

Maybe this link can help: https://github.com/ros/catkin/issues/175

I ended up downloading the sources and installing manually using

$ sudo python setup.py install

But I needed an install from source anyway.

EDIT: What you describe could be a bug in the dependencies. catkin needs to create std_msgsConfig.cmake before using it, so if some package uses std_sgs in the CMakeLists.txt, but does not declare that dependency in the package.xml, this error would occur. Can you post the order of packages that cmake lists in the beginning, and also for which project the error occurs?

Maybe this link can help: https://github.com/ros/catkin/issues/175

The deb can be downloaded and installed like this:

$ wget http://packages.ros.org/ros-shadow-fixed/ubuntu/pool/main/c/catkinpkg/python-catkin-pkg_0.1.0-1_all.deb
$ sudo dpkg -i python-catkin-pkg_0.1.0-1_all.deb

I ended up downloading the sources and installing manually using

$ sudo python setup.py install

But I needed an install from source anyway.

EDIT: What you describe could be a bug in the dependencies. catkin needs to create std_msgsConfig.cmake before using it, so if some package uses std_sgs in the CMakeLists.txt, but does not declare that dependency in the package.xml, this error would occur. Can you post the order of packages that cmake lists in the beginning, and also for which project the error occurs?

Maybe this link can help: https://github.com/ros/catkin/issues/175

The deb can be downloaded and installed like this:

$ wget http://packages.ros.org/ros-shadow-fixed/ubuntu/pool/main/c/catkinpkg/python-catkin-pkg_0.1.0-1_all.deb
$ sudo dpkg -i python-catkin-pkg_0.1.0-1_all.deb

I ended up downloading the sources and installing manually using

$ sudo python setup.py install

But I needed an install from source anyway.

EDIT: What you describe could be a bug in the dependencies. catkin needs to create std_msgsConfig.cmake before using it, so if some package (rosmaster) uses std_sgs in the CMakeLists.txt, but does not declare that dependency in the package.xml, this error would occur. Can This occurs for ros_comm/rosmaster. Since catkin is very much in flux right now, you post the order of packages that cmake lists in the beginning, and also for which project the error occurs?can either report this or wait a day until it got fixed.

Maybe this link can help: https://github.com/ros/catkin/issues/175

The deb can be downloaded and installed like this:

$ wget http://packages.ros.org/ros-shadow-fixed/ubuntu/pool/main/c/catkinpkg/python-catkin-pkg_0.1.0-1_all.deb
$ sudo dpkg -i python-catkin-pkg_0.1.0-1_all.deb

I ended up downloading the sources and installing manually using

$ sudo python setup.py install

But I needed an install from source anyway.

EDIT: What you describe could be a bug in the dependencies. catkin needs to create std_msgsConfig.cmake before using it, so if some package (rosmaster) uses std_sgs in the CMakeLists.txt, but does not declare that dependency in the package.xml, this error would occur. This occurs for ros_comm/rosmaster. Since catkin is very much in flux right now, you can either report this or wait a day until it got fixed.

A simple update (rosws update -j8 in src) could do the trick. As I said, this is very much in flux right now, as the catkin design has been changed a lot, and a lot of packages need to be migrated.