Catkin_make not installing Python dependencies
How do you make catkin_make
install all Python package dependencies via pip?
I've written a simple Python package with a setup.py file like:
#!/usr/bin/env python
from distutils.core import setup
from catkin_pkg.python_setup import generate_distutils_setup
d = generate_distutils_setup(
version='0.0.1',
packages=['mypackage'],
package_dir={'': 'src'},
install_requires=['somepackage'],
)
setup(**d)
And my CMakeLists.txt
includes catkin_python_setup()
.
However, when I run catkin_make
and source devel/setup.sh
, somepackage
isn't installed into the virtual environment.