how to deal with the python-rosinstall problem
I have finished the above installation of ROS Hydro,when I want to install rosinstall,Ubuntu12.10 terminal warm the following: dpkg: dependency problems prevent configuration of python-wstool: python-wstool depends on python:any (>= 2.7.1-0ubuntu2).
dpkg: error processing python-wstool (--configure): dependency problems - leaving unconfigured No apport report written because the error message indicates its a followup error from a previous failure. dpkg: dependency problems prevent configuration of python-rosinstall: python-rosinstall depends on python-wstool (>= 0.1.1); however: Package python-wstool is not configured yet.
dpkg: error processing python-rosinstall (--configure): dependency problems - leaving unconfigured No apport report written because the error message indicates its a followup error from a previous failure. Errors were encountered while processing: python-wstool python-rosinstall E: Sub-process /usr/bin/dpkg returned an error code (1)
how can I deal with this problem?thx
Asked by nalu on 2014-08-02 21:58:58 UTC
Answers
How about "sudo pip install -U wstool" ? And then "sudo pip install -U rosinstall"
Asked by ymine on 2014-09-05 10:52:59 UTC
Comments
Not working for me.
Asked by andrestoga on 2016-12-02 19:54:44 UTC
I had a similar problem. I was able to find the solution through some searching. Here is the solution:
First of all, install "pip" if you don't already have it. Here's a useful link to do that...
http://www.saltycrane.com/blog/2010/02/how-install-pip-ubuntu/
Next...run the following from the terminal:
sudo pip install -U rosdep rosinstall_generator wstool rosinstall
...it should now be working.
Asked by kedarm on 2014-09-17 21:04:19 UTC
Comments
Thank you, this solved mine question.
Asked by cangjiaxuan on 2015-04-16 06:30:32 UTC
Hi, I try this and it gets me ImportError: no module named setuptools. I try to install it, but without success.
Asked by simone87 on 2015-10-30 05:15:38 UTC
Not working for me. I'm still getting the same result. Is there a solution for this?
Asked by andrestoga on 2016-12-02 19:54:30 UTC
Comments
Does it get better if you run
sudo apt-get install -f
?Asked by ahendrix on 2014-08-03 00:45:25 UTC
no, just as the above description. thank you for the answer. any other solution?
Asked by nalu on 2014-08-03 01:35:25 UTC
It looks like the dependencies for the python-wstool package aren't satisfied properly. Did you install it through apt-get? Which version of python do you have installed?
Asked by ahendrix on 2014-08-03 02:51:39 UTC
I get the same error message. Is there anyone who has any idea on this?
Asked by DavidSuh on 2014-08-19 06:20:13 UTC
I am getting the same error.
Asked by byrde42 on 2014-09-01 08:30:06 UTC