Ubuntu/Python/3.14: Difference between revisions
Jump to navigation
Jump to search
(Created page with " sudo add-apt-repository ppa:deadsnakes/ppa sudo apt update sudo apt install python3.14") |
No edit summary |
||
| Line 1: | Line 1: | ||
Add Deadsnakes and install python 3.14 | |||
sudo add-apt-repository ppa:deadsnakes/ppa | sudo add-apt-repository ppa:deadsnakes/ppa | ||
sudo apt update | sudo apt update | ||
sudo apt install python3.14 | sudo apt install python3.14 | ||
python3.14 --version | |||
For development, virtuan env, and pip: | |||
sudo apt install python3.14-dev python3.14-venv python3.14-pip | |||
For a more complete installation including the Tkinter IDE and other utilities, you can use: | |||
sudo apt install python3.14-full | |||
Revision as of 22:48, 5 February 2026
Add Deadsnakes and install python 3.14
sudo add-apt-repository ppa:deadsnakes/ppa sudo apt update sudo apt install python3.14
python3.14 --version
For development, virtuan env, and pip:
sudo apt install python3.14-dev python3.14-venv python3.14-pip
For a more complete installation including the Tkinter IDE and other utilities, you can use:
sudo apt install python3.14-full