Ich finde das in letzter Zeit oft, wenn ich versuche, ein Python- Paket mit pip zu installieren die folgenden Fehler erhalte, .
Ich habe online eine Referenz gefunden, dass man " python2 setup.py install " verwenden muss " aus dem Download-Verzeichnis verwenden muss, und tatsächlich , dass dies dann funktioniert, wenn ich das Paket manuell finde und herunterlade (von pypi).
Ich weiß jedoch nicht, wohin pip Pakete herunterlädt und / oder warum dies auf diese Weise fehlschlägt.
Ich habe versucht, ein Pip-Upgrade durchzuführen, aber es ist auch auf ähnliche Weise fehlgeschlagen, mit einer Reihe von Fehlern "Unbekannte Verteilungsoption" (entry_points, zip_safe, test_suite, tests_require)!
- pip 1.0.1
- ActivePython 2.7
Der Versuch, ActiveStates Pypm zu verwenden, schlägt fehl, da sie eine kleinere Bibliotheksbasis haben und diese Pakete nicht enthalten.
C:\test>pip install requests-oauth
Downloading/unpacking requests-oauth
Downloading requests-oauth-0.4.1.tar.gz
Running setup.py egg_info for package requests-oauth
E:\Plang\ActivePython\lib\distutils\dist.py:267: UserWarning: Unknown distribution option: 'zip_safe'
warnings.warn(msg)
E:\Plang\ActivePython\lib\distutils\dist.py:267: UserWarning: Unknown distribution option: 'install_requires'
warnings.warn(msg)
usage: -c [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: -c --help [cmd1 cmd2 ...]
or: -c --help-commands
or: -c cmd --help
error: invalid command 'egg_info'
Complete output from command python setup.py egg_info:
E:\Plang\ActivePython\lib\distutils\dist.py:267: UserWarning: Unknown distribution option: 'zip_safe'
warnings.warn(msg)
E:\Plang\ActivePython\lib\distutils\dist.py:267: UserWarning: Unknown distribution option: 'install_requires'
warnings.warn(msg)
usage: -c [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: -c --help [cmd1 cmd2 ...]
or: -c --help-commands
or: -c cmd --help
error: invalid command 'egg_info'
python-dev