Created
January 13, 2020 15:55
-
-
Save jitheshkt/c5c514a03a22b4d975d2e959cdde143b to your computer and use it in GitHub Desktop.
Install Python virtualenv on Windows 10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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