How to Install Python 3.6 on Ubuntu & LinuxMint

Python 3.6.10 is the latest stable version at the time of writing of tutorial. This Python version is available to download and install. This article will help you to install Python 3.6.10 on Ubuntu and Linuxmint operating system. To know more about this version visit Python official website.

Step 1 – Prerequsities

Use the following command to install prerequisites for Python before proceeding to the next steps.

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.6

Download Python using following command from python official site. You can also download the latest version in place of specified below.

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

Now extract the downloaded package.

sudo tar xzf Python-3.6.10.tgz

Step 3 – Compile Python Source

Now use below set of commands to compile Python source code on your system. We use --enable-optimizations option with configure command to enable additional supports like SSL, bz2 support. With make command altinstall, to install it as separate Python, This will not overwrite the existing installation.

cd Python-3.6.10
sudo ./configure --enable-optimizations
sudo make -j1 build_all sudo make altinstall

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

Step 4 – Check the Python Version

Finally, you have successfully installed Python 3.6 on your system. Let’s check the version installed of python using the below command.

python3.6 -V

Python 3.6.10

This will also configure PIP for you to install Python modules.

pip3.6 -V

pip 9.0.1 from /usr/local/lib/python3.6/site-packages (python 3.6)
  • 4 Users Found This Useful
Was this answer helpful?

Related Articles

วิธีการปรับขนาดพื้นที่ของ Windows Server

เมื่อท่านอยู่ใน remote destop ใน VPS ของท่านเรียบร้อยแล้ว 1. คลิกขวาบน Start แล้วคลิก...

วิธีการปรับขนาดพื้นที่ของ LINUX

สิ่งที่ท่านจะได้เรียนรู้ต่อไปนี่คือจะเป็นของ Centos 7   สำหรับ Linux ตัวอื่น...

[Linux] How to make Swap Partition

[HDD] We recommends to 2 Gig of ram, and 4 Gig of swap.The more ram the better, but much more...