Skip to content

Instantly share code, notes, and snippets.

@cs01
Last active February 21, 2019 17:05
Show Gist options
  • Save cs01/201f4d74558016bc2c2d0fe34ada7f17 to your computer and use it in GitHub Desktop.
Save cs01/201f4d74558016bc2c2d0fe34ada7f17 to your computer and use it in GitHub Desktop.
create a virtual enviroment, upgrade pip, and activate it
venvhere(){
python3 -m venv venv --prompt $(basename $PWD) && \
source venv/bin/activate && \
pip install -U pip --quiet
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment