Skip to content

James O'Claire

My personal site

Menu
  • Home
  • Projects
    • Projects Overview
    • AppGoblin – Free App Marketing Tools
    • Android Apps
  • Contact
  • AppGoblin – App B2B Ecosystem Dash
Menu

How to Install Python3.14 from source on Ubuntu 26.04

Posted on August 6, 2026August 6, 2026 by James O'Claire

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
sudo apt build-dep python3
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/

  1. curl -O URL
  2. tar -xvf ZIPPEDPYTHONFILE you will now have a directory like Python3.12.xxx
  3. sudo mv Python3.12.x /opt/ Move python installation directory to /opt/ to keep home clean
  4. cd /opt/Python3.12.x into the directory and run each command
  5. Check you have all packages installed from above
  6. ./configure --enable-optimizations
  7. make Builds Python, this step takes some time.
  8. 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

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
    © 2026 James O'Claire | Powered by Minimalist Blog WordPress Theme