Skip to content Skip to sidebar Skip to footer

Virtualenv On Windows Installs In System Site Packages

I initialize my project with virtualenv through these steps(in Windows 7 OS): $ cd myproject $ virtualenv venv $ venv\scripts\activate and then I try to install flask $ pip instal

Solution 1:

Try using the Scripts\pip.exe in your venv folder.

Solution 2:

Start over with CMD. Recreate your virtualenv using only CMD. Then do a pip freeze. Things should work now. The reason why git-bash does not work is because it has only the PATH for git, and nothing else.

Post a Comment for "Virtualenv On Windows Installs In System Site Packages"