saiftheboss7
saiftheboss7

Reputation: 31

virtualenvwrapper error - all mkvirtualenv already exists

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.

enter image description here

Upvotes: 3

Views: 1574

Answers (1)

Jude Michael Teves
Jude Michael Teves

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

Related Questions