-Cannot install easy_install with python distribute_setup.py -Easy_install pip cannot install pip
You need to install easy_install first to install pip.
http://python-distribute.org/distribute_setup.py Right-click and save directly under C.
Then, at the command prompt, go directly under C and install with 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'
Will be. So https://pypi.python.org/packages/source/d/distribute/ Fly to and download distribute-0.6.49.tar.gz directly under C.
When I run python distribute_setup.py again, the installation is successful.
And you can install it by running easy_install pip ... you can't.
Apparently the PATH doesn't go through.
SET PATH=%PATH%;C:\Python34\Scripts
The PATH passed successfully, and the pip installation was successful.
Recommended Posts