Reputation: 31
So I am new in Python. I install the latest Python 3.6.2 and installed virtualenvwrapper via
pip install virtualenvwrapper-win
but the problem is whenever I run the command mkvirtualenv it throws me an error about the virtualenv already exists, whereas I have not created any virtual environment yet.
Upvotes: 3
Views: 1574
Reputation: 71
https://github.com/davidmarble/virtualenvwrapper-win/issues/85
Hi!
I also encountered this problem earlier. It seems like there's a problem with the new version of virtualenvwrapper-win
.
What I did to resolve this issue was I uninstalled the package and then installed the previous version.
Here are the pip commands for doing so:
pip uninstall virtualenvwrapper-win
pip install virtualenvwrapper-win==1.2.0
Upvotes: 7