Skip to content

Instantly share code, notes, and snippets.

@manoj-choudhari-git
Last active September 24, 2020 16:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manoj-choudhari-git/fe55fc23a1c894450357c2591b874a4a to your computer and use it in GitHub Desktop.
Save manoj-choudhari-git/fe55fc23a1c894450357c2591b874a4a to your computer and use it in GitHub Desktop.
Setup Python on WSL
## Check if Phython is already installed
python3 --version
## If not installed Python, then update Ubuntu
sudo apt update && sudo apt upgrade
## Update the version of Python
sudo apt upgrade python3
## Install package manager for Phython
sudo apt install python3-pip
## Install VENV, standard module
## to create and manage the lightweight virtual environments
sudo apt install python3-venv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment