Closed davetcoleman closed 10 years ago
Take a look at this: https://www.osc.edu/documentation/howto/install-your-own-python-modules
The issue is that the catkin
program is generated when the package gets installed, not when the package gets built. You need that generated script on your PATH
environment variable.
I recommend that you use a virtualenv
: http://virtualenv.readthedocs.org/en/latest/
I'm going to close this for now, please comment here again if there is a problem specifically with catkin_tools
related to virtualenv
's.
P.S. You should never expect a call to python3
to work when you have a Python2 path in your PYTHONPATH
. As you can see the failure is in a core Python module pkg_resources
.
Thanks
I'm trying to install catkin_tools on a Groovy Baxter robot without sudo access. I do the following:
Install catkin_tools
First edit your .bashrc and add:
Source your .bashrc then
Done.
I see my PYTHONPATH has been added but the
catkin
command is still not found. Additionally, when I go to/home/ruser/bin/catkin_tools/lib/python2.7/site-packages/catkin_tools-0.2.0-py2.7.egg/catkin_tools/commands
and runpython catkin.py
I get no output. When I runpython3 catkin.py
I get:I am not very good at Python so am a little lost. Thanks!