This article will help you to install Python 3.5.9 on Ubuntu, Debian, and Linuxmint operating system. To know more about this version visit Python official website.

Advertisement

Step 1 – Prerequisites

You must have fulfilled all the prerequisites for installing Python on Ubuntu, Debian and Linuxmint. Use the following command to install all the prerequisites. After that go for the Python installation on Ubuntu.

sudo apt-get install build-essential checkinstall
sudo apt-get install libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev

Step 2 – Download Python 3.5

Download Python source code archive from its official download website. You can also download Python 3.5 version using the following commands.

cd /usr/src
wget https://www.python.org/ftp/python/3.5.9/Python-3.5.9.tgz

Now extract the downloaded archive on your system.

sudo tar xzf Python-3.5.9.tgz

Step 3 – Install Python on Linux

Use below set of commands to compile Python source code on your system using altinstall. This will install Python on an Ubuntu and LinuxMint system.

cd Python-3.5.9
sudo ./configure --enable-optimizations
sudo make altinstall

make altinstall is used to prevent replacing the default python binary file /usr/bin/python.

Step 4 – Check the Python Version

You have successfully installed Python on Linux. Check the Python version installed using the command:

python3.5 -V

Python 3.5.9
Share.

21 Comments

  1. Thanks! I needed Python3.5 on my Linux Mint 20.1 but it just comes with 3.8 and 3.9
    Since I also needed the libpython3.5m.so.1.0 file, I had to
    sudo ./configure –enable-shared –enable-optimizations

  2. How to install virtual environment for newly installed python3.5. My goal is to install TensorFlow using Python3.5 not with the default Python3.8
    Do i have to specify Python3.5 instead of Python3? Because in Ubuntu 20.04 Python3 indicate to default Python3.8.

    sudo apt install -y python3.5-venv
    python3.5 -m venv my_env

    Please correct me if i am wrong.

  3. but how do u run it? i cant open it. it just opens the archive mounter. there’s no application thing or anything like that.

    • sudo apt-get install software-properties-common python-software-properties
      sudo add-apt-repository ppa:fkrull/deadsnakes
      sudo apt-get update
      sudo apt-get install python3.5

      This is better.

Reply To bux Cancel Reply

Exit mobile version