Closed guilhembn closed 6 years ago
Hello,
note that I find it way easier to just run:
pip3 install catkin_pkg rospkg pyyaml
Regards,
Jeremy
2017-10-10 9:25 GMT+02:00 Guilhem B. notifications@github.com:
On this piece of documentation : ROS Installation Notes http://www.openrobots.org/morse/doc/1.3/user/installation/mw/ros.html in order to install pyYAML, rospkg and catkin for Python3 it is suggested to execute sudo python3 setup.py install. According to this SO topic https://stackoverflow.com/questions/18199853/error-could-not-create-library-python-2-7-site-packages-xlrd-permission-den, sudo must not be used to install with python. Furthermore, I had errors installing the packages using sudo : error: could not create 'src/catkin_pkg.egg-info': Permission denied while everything works fine using python3 setup.py install --user. The documentation may need to be fixed.
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/morse-simulator/morse/issues/769, or mute the thread https://github.com/notifications/unsubscribe-auth/ABOkPUN2OI4vGo_pw3Yt3qgsGpKrrOIEks5sqxvxgaJpZM4Pze74 .
Fixed using @nicolaje suggestion. Thanks.
On this piece of documentation : ROS Installation Notes in order to install pyYAML, rospkg and catkin for Python3 it is suggested to execute
sudo python3 setup.py install
. According to this SO topic,sudo
must not be used to install with python. Furthermore, I had errors installing the packages usingsudo
:error: could not create 'src/catkin_pkg.egg-info': Permission denied
while everything works fine usingpython3 setup.py install --user
. The documentation may need to be fixed.