Created
July 21, 2019 18:31
-
-
Save gauravv7/7759392ee2be68eaf9bda352798b7d23 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| # curl -sL bit.ly/p7virtualenv | bash | |
| curl -O https://pypi.python.org/packages/source/v/virtualenv/virtualenv-12.0.5.tar.gz | |
| tar xzf virtualenv-12.0.5.tar.gz && rm virtualenv-12.0.5.tar.gz | |
| mv virtualenv-12.0.5 ~/.virtualenv | |
| echo >> ~/.bashrc | |
| echo "alias virtualenv='python $HOME/.virtualenv/virtualenv.py'" >> ~/.bashrc | |
| echo 'Now run: source ~/.bashrc' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment