-Kann easy_install nicht mit python Distribute_setup.py installieren ・ Easy_install pip kann pip nicht installieren
Sie müssen zuerst easy_install installieren, um pip zu installieren.
http://python-distribute.org/distribute_setup.py Klicken Sie mit der rechten Maustaste und speichern Sie direkt unter C.
Gehen Sie dann an der Eingabeaufforderung direkt unter C und installieren Sie mit python Distribute_setup.py.
Downloading http://pypi.python.org/packages/source/d/distribute/distri9.tar.gz
Traceback (most recent call last):
File "distribute_setup.py", line 556, in <module>
sys.exit(main())
File "distribute_setup.py", line 552, in main
tarball = download_setuptools(download_base=options.download_base)
File "distribute_setup.py", line 215, in download_setuptools
dst = open(saveto, "wb")
OSError: [Errno 22] Invalid argument: 'C:\\distribute-0.6.49.tar.gz'
Wird sein. Damit https://pypi.python.org/packages/source/d/distribute/ Fliegen Sie zu und laden Sie Distribute-0.6.49.tar.gz direkt unter C herunter.
Wenn python Distribute_setup.py erneut ausgeführt wird, ist die Installation erfolgreich.
Und Sie können es installieren, indem Sie easy_install pip ausführen ... Sie können es nicht tun.
Anscheinend geht der Pfad nicht durch.
SET PATH=%PATH%;C:\Python34\Scripts
Dann wurde der Pfad übergeben und pip wurde erfolgreich installiert.
Recommended Posts