Closed rsyring closed 11 years ago
Try again with the latest setuptools. There's been some funny issues with the past couple releases, but the latest works for me (tested today with both Python27 and Python33).
The pypi instructions now note the best way to install setuptools is by downloading this script:
https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py
For example, I've downloaded it to C:\Downloads
. Then with C:\Python27;C:\Python27\Scripts
in my PATH:
C:\Downloads>python ez_setup.py
. . . . (a bunch of installation messages)...
Processing setuptools-0.9.8-py2.7.egg
Copying setuptools-0.9.8-py2.7.egg to c:\python27\lib\site-packages
Adding setuptools 0.9.8 to easy-install.pth file
Installing easy_install-2.7-script.py script to C:\Python27\Scripts
Installing easy_install-2.7.exe script to C:\Python27\Scripts
Installing easy_install-script.py script to C:\Python27\Scripts
Installing easy_install.exe script to C:\Python27\Scripts
Installed c:\python27\lib\site-packages\setuptools-0.9.8-py2.7.egg
Processing dependencies for setuptools==0.9.8
Finished processing dependencies for setuptools==0.9.8
C:\Downloads>easy_install virtualenvwrapper-win
. . . . (a bunch of installation messages) . . . .
Successfully installed virtualenvwrapper-win virtualenv
Cleaning up...
Though I'd recommend pip:
C:\Downloads>python ez_setup.py
. . . . (installation messages, easy_install.exe now installed in C:\Python27\Scripts)
C:\Downloads>easy_install pip
. . . . pip.exe now installed in C:\Python27\Scripts
C:\Downloads>pip install virtualenvwrapper-win
Thanks, I can confirm this is fixed.
Also, regarding your suggested method of installing pip just above, the pip team is warning against installing pip with easy_install due to security reasons:
http://www.pip-installer.org/en/latest/installing.html#installing-globally
Just FYI.
Thanks for your work on this project, its so much nicer working with virtualenvs on Windows!
Interesting. I hadn't read that before. Thanks!
On Monday, July 29, 2013, rsyring wrote:
Thanks, I can confirm this is fixed.
Also, regarding your suggested method of installing pip just above, the pip team is warning against installing pip with easy_install due to security reasons:
http://www.pip-installer.org/en/latest/installing.html#installing-globally
Just FYI.
Thanks for your work on this project, its so much nicer working with virtualenvs on Windows!
— Reply to this email directly or view it on GitHubhttps://github.com/davidmarble/virtualenvwrapper-win/issues/35#issuecomment-21725436 .
I have a fresh python 2.7.5 installation, setuptools 0.7.2, and pip (latest). I'm unable to install using either pip or easy_install.