Skip to content

Instantly share code, notes, and snippets.

@jitheshkt
Created January 13, 2020 15:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jitheshkt/c5c514a03a22b4d975d2e959cdde143b to your computer and use it in GitHub Desktop.
Save jitheshkt/c5c514a03a22b4d975d2e959cdde143b to your computer and use it in GitHub Desktop.
Install Python virtualenv on Windows 10
# Run windows Power Shell as administrator
pip install virtualenv
pip install virtualenvwrapper-win
# navigate the power shell to your project directory
virtualenv dev
cd dev
Set-ExecutionPolicy AllSigned
Set-ExecutionPolicy RemoteSigned
cd ..
.\dev\Scripts\activate
# run deactivate to deactivate your env as it is.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment