Created
January 29, 2021 03:56
-
-
Save nikolai-wolterstorff/4d8dea3ff4746efce5d4536ca40178aa to your computer and use it in GitHub Desktop.
Typical install of a Python 3 venv Virtual Enviroment
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
| 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