Ubuntu/Python/3.14: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
Dependency: | |||
sudo apt install software-properties-common | |||
Add Deadsnakes and install python 3.14 | Add Deadsnakes and install python 3.14 | ||
sudo add-apt-repository ppa:deadsnakes/ppa | sudo add-apt-repository ppa:deadsnakes/ppa | ||
| Line 11: | Line 14: | ||
For a more complete installation including the Tkinter IDE and other utilities, you can use: | For a more complete installation including the Tkinter IDE and other utilities, you can use: | ||
sudo apt install python3.14-full | sudo apt install python3.14-full | ||
Pip: | |||
curl -sS https://bootstrap.pypa.io/get-pip.py | python3.14 | |||
Revision as of 22:51, 5 February 2026
Dependency:
sudo apt install software-properties-common
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
Pip:
curl -sS https://bootstrap.pypa.io/get-pip.py | python3.14