How to Install Python3.14 from source on Ubuntu 26.04 – James O'Claire
Skip to content
Menu
I’ve always been a big fan of installing Python from source. It keeps you close to your environments and understanding exactly where the code comes from and goes to.
I feel like in the past it was more difficult, but year after year it seems like it’s getting easier. This year for Ubuntu 26.04 there is a bit of a new step added, but ultimately it is feeling effortless. The whole process takes about 10 or so minutes, and is good for people of all levels to understand.
Prep for on a fresh install of Ubuntu 26.04
You may need a C compiler if you haven’t yet downloaded:
sudo apt update && sudo apt -y install build-essential
New Ubuntu sources need to add ‘deb-src’
There is a new way to get the build-deps for Python on Ubuntu, so you’ll need to edit /etc/apt/sources.list.d/ubuntu.sources and add deb-src to the Types line.
sudo vim /etc/apt/sources.list.d/ubuntu.sources
Types: deb deb-src
Now that has been added you can get build-deps for Python:
sudo apt update<br>sudo apt build-dep python3<br>sudo apt install -y pkg-config
Install all the additional packages for python extras, you want these
I generally install all additionals since many are quite important for python. Some are more specialized and you may not use, while others like libcurses are basically required if you expect to ever need to interact with an interpreter (eg troubleshooting a production environment). Others you may not need until some future data, say when you install a package that expects a certain kind of data compression. Overall, my advice is just install all unless you know more or have a specialized use case for streamlined environment.
sudo apt -y install build-essential gdb lcov pkg-config libbz2-dev libffi-dev libgdbm-dev libgdbm-compat-dev liblzma-dev libncurses-dev libreadline-dev libsqlite3-dev libssl-dev lzma tk-dev uuid-dev zlib1g-dev libmpdec-dev libzstd-dev inetutils-inetd
Python 3.14 Installation on Linux
Download the latest version:
Choose Gzipped Tarball https://www.python.org/
curl -O URL
tar -xvf ZIPPEDPYTHONFILE you will now have a directory like Python3.12.xxx
sudo mv Python3.12.x /opt/ Move python installation directory to /opt/ to keep home clean
cd /opt/Python3.12.x into the directory and run each command
Check you have all packages installed from above
./configure --enable-optimizations
make Builds Python, this step takes some time.
sudo make altinstall altinstall skips creating the python link and the manual pages links, install will hide the system binaries and manual pages. This means that we will leave the system python installation untouched
Python is now installed.
Last important step is to configure the system links: sudo ldconfig /opt/Python3.14.x
Finally you can test:
python3.14
Categories
Development
Mobile Marketing and Advertising
Uncategorized
Search for:
Recent Posts
How to Install Python3.14 from source on Ubuntu 26.04
Pip 26.2: –only-deps solves 16 years of app deployment hacks
How to stay in the coding flow using LLMs
The Pregnancy and Health Apps Still Leaking Data in 2026
The Unbearable Cheapness of Open Weight Models
Recent Comments
Archives
August 2026
July 2026
June 2026
May 2026
January 2026
November 2025
October 2025
September 2025
August 2025
June 2025
May 2025
April 2025
March 2025
February 2025
January 2025
December 2024
November 2024
October 2024
March 2024
February 2024
January 2024
November 2023
October 2023
September 2023
October 2022
April 2016
March 2016
February 2016
Meta
Log in
Entries feed
Comments feed
WordPress.org