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

The deb for python3.2 seems broken. There is a missing symlink libpython3.2mu.so -> libpython3.2mu.so.1 in /usr/lib.

This bug is ticketed, apparently fixes, but somehow not ... https://bugs.launchpad.net/ubuntu/+source/csound/+bug/933715

Either manually adding the missing symlink or installing python3.2-dev fixed it for me.

The deb I'm not sure for python3.2 seems broken. There is a missing symlink Debian, but for Ubuntu Python 2.7 will be the default until 14.04 (source). If you are working with sources, than you might have used rosdep to install system dependencies. rosdep resolves the dependency on libpython3.2mu.so -> libpython3.2mu.so.1python in to /usr/libpython-dev, what for Ubuntu Precise points to python2.7-dev.

This bug is ticketed, apparently fixes, but somehow not ... https://bugs.launchpad.net/ubuntu/+source/csound/+bug/933715However, if you have python3.2 installed cmake might look for python3.2-dev, which won't be pulled in by rosdep.

Either So, you could manually adding the missing symlink or installing install python3.2-dev fixed it or force cmake to look for me.a specific version, e.g.

find_package(PythonLibs 2.7 REQUIRED)

Hope this helps!