Skip to content

Instantly share code, notes, and snippets.

@nikolai-wolterstorff
Created January 29, 2021 03:56
Show Gist options
  • Select an option

  • Save nikolai-wolterstorff/4d8dea3ff4746efce5d4536ca40178aa to your computer and use it in GitHub Desktop.

Select an option

Save nikolai-wolterstorff/4d8dea3ff4746efce5d4536ca40178aa to your computer and use it in GitHub Desktop.
Typical install of a Python 3 venv Virtual Enviroment
sudo apt-get install python3-venv # install venv for system Python
python3 -m venv <venv_name> # create venv directory at <venv_name>
. <venv_name>/bin/activate # activate the enviroment
# or (if not in bash and in terminal):
# source <venv_name>/bin/activate
pip install --upgrade pip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment