dotfiles/vscode/.vscode/extensions/ms-python.python-2024.10.0-darwin-arm64/resources/walkthrough/install-python-linux.md
Errol Sancaktar 5f8db31398 alacritty
2024-07-15 17:06:13 -06:00

597 B

Install Python on Linux

To install the latest version of Python on Debian-based Linux distributions, you can create a new terminal (Ctrl + Shift + `) and run the following commands:

sudo apt-get update
sudo apt-get install python3 python3-venv python3-pip

For Fedora-based Linux distributions, you can run the following:

sudo dnf install python3

To verify if Python was successfully installed, run the following command in the terminal:

python3 --version