Overview
Python3 is available on Shared, VPS, and Dedicated Servers. If you wish to use a specific version, you can install it locally under your Shell user by following the steps in this article.
To run the following commands, you must log in to your server via SSH with your Shell user. View the following articles for more information:
Installing Python 3
The instructions below install version 3.10.1. Make sure to change this to your chosen version in the commands below.
- Choose the version you wish to install from python.org.
- Right-click on the link titled Gzipped source tarball of the version you wish to install. From the popout menu choose Copy Link Address.
- Log into your server via SSH, and then run the following commands one at a time:
[server]$ cd ~ [server]$ mkdir tmp [server]$ cd tmp [server]$ wget https://www.python.org/ftp/python/3.10.1/Python-3.10.1.tgz [server]$ tar zxvf Python-3.10.1.tgz
[server]$ cd Python-3.10.1
[server]$ ./configure --prefix=$HOME/opt/python-3.10.1 [server]$ make [server]$ make install- These commands install your local version of python to /home/username/opt/python-3.10.1.
- Navigate back to your user's home directory:
[server]$ cd ~
- View the creating and editing a file via SSH article for instructions on how to edit your existing .bash_profile. To use the new version of Python over the system default, enter the following line to your .bash_profile:
export PATH=$HOME/opt/python-3.10.1/bin:$PATH
- Save and close the file, and then return to your shell. Run the following command to update this file:
[server]$ . ~/.bash_profile
- Check which version of Python you're now using by entering the following command:
[server]$ which python3 /home/username/opt/python-3.10.1/bin/python3
You can also check the version:
[server]$ python3 --version Python 3.10.1
If there is no response then the newly downloaded copy is not being used. Most often this is due to the .bash_profile not being updated correctly. Try logging out and back in again. If necessary, repeat the steps above.
If you're using Django
If you're using Django, make sure to view the following articles:
Updating to a newer version
There is no quick option to automatically update your custom Python installation to a newer version.
You would follow the same steps above to download, install, and activate the version of your choice.