Created
April 27, 2021 21:05
-
-
Save nkhitrov/200bb74132c309bbf033d39c7784e979 to your computer and use it in GitHub Desktop.
python virtualenv wrapper install script
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
pip install virtualenv virtualenvwrapper | |
sudo echo '# where to store our virtual envs | |
export WORKON_HOME=$HOME/.pythonvenvs | |
# where is the virtualenvwrapper.sh | |
source $(which virtualenvwrapper.sh) | |
' >> ~/.bashrc | |
source ~/.bashrc | |
workon |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment