Skip to content

Instantly share code, notes, and snippets.

@everythingpython
Created August 30, 2025 16:34
Show Gist options
  • Select an option

  • Save everythingpython/0899f4747c499372314a84ac791354be to your computer and use it in GitHub Desktop.

Select an option

Save everythingpython/0899f4747c499372314a84ac791354be to your computer and use it in GitHub Desktop.
Install python3.14 in WSL/Linux

Download the tgz from here - https://www.python.org/downloads/release/python-3140rc2/

sudo tar xvf Python-3.14.0rc2.tgz`
cd Python-3.14.0rc2/
sudo ./configure --enable-optimizations --enable-shared LDFLAGS="-Wl,-rpath=/usr/local/lib"
sudo make -j$(nproc)
sudo make altinstall

Now python3.14 will be accessible.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment