Ich bin auf das folgende Problem gestoßen, als ich pip ausgeführt habe, um rpyc zu installieren. Selbst wenn ich versuche, pip ohne Argumente auszuführen, wird immer noch derselbe Fehler ausgegeben. Für jede Hilfe wäre ich sehr dankbar, danke.
volt72@killadelph:~/zone/zone$ pip
Traceback (most recent call last):
File "/usr/bin/pip", line 5, in <module>
from pkg_resources import load_entry_point
File "/usr/local/lib/python2.7/dist-packages/distribute-0.6.14-py2.7.egg/pkg_resources.py", line 2691, in <module>
add_activation_listener(lambda dist: dist.activate())
File "/usr/local/lib/python2.7/dist-packages/distribute-0.6.14-py2.7.egg/pkg_resources.py", line 668, in subscribe
callback(dist)
File "/usr/local/lib/python2.7/dist-packages/distribute-0.6.14-py2.7.egg/pkg_resources.py", line 2691, in <lambda>
add_activation_listener(lambda dist: dist.activate())
File "/usr/local/lib/python2.7/dist-packages/distribute-0.6.14-py2.7.egg/pkg_resources.py", line 2192, in activate
self.insert_on(path)
File "/usr/local/lib/python2.7/dist-packages/distribute-0.6.14-py2.7.egg/pkg_resources.py", line 2293, in insert_on
"with distribute. Found one at %s" % str(self.location))
ValueError: A 0.7-series setuptools cannot be installed with distribute. Found one at /usr/local/lib/python2.7/dist-packages/setuptools-20.7.0-py2.7.egg
volt72@killadelph:~/zone/zone$
Antwort1
Ok, nach einigen Recherchen habe ich beschlossen, Folgendes zu tun:
rm /usr/local/lib/python2.7/dist-packages/setuptools-20.7.0-py2.7.egg
sudo apt-get purge python-pip
wget https://bootstrap.pypa.io/get-pip.py
python get-pip.py
Jetzt funktioniert Pip ohne Probleme.
Antwort2
Ich habe es gelöst, indem ich „Distribute“ entfernt habe
sudo pip uninstall distribute