Skip to content

Instantly share code, notes, and snippets.

@barseghyanartur
Created February 2, 2021 21:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barseghyanartur/479b0b4749d7a726167faf834706c852 to your computer and use it in GitHub Desktop.
Save barseghyanartur/479b0b4749d7a726167faf834706c852 to your computer and use it in GitHub Desktop.
Install virtualenv on Python 3.9

Install virtualenv on Python 3.9

Add dead-snakes repository:

sudo add-apt-repository ppa:deadsnakes/ppa

Install Python 3.9, development package and the specific venv:

sudo apt install python3.9
sudo apt install python3.9-dev
sudo apt install python3.9-venv

Create Python 3.9 virtualenv:

python3.9 -m venv py39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment