How To Install Python 3 on Ubuntu 16.04 LTS

In
this tutorial we will show you how to install and configuration Python 3
on Ubuntu 16.04 LTS server. For those of you who didn’t know, Python is
an open-source and beginner-friendly programming language. Ubuntu 16.04
and Ubuntu 16.10 come with two versions of Python, Python 2.7 and
Python 3.5. At the time of this writing, the latest stable version of
Python is 3.6, released on December 23rd, 2016. If you need to use
python3 as part of Python application dependency, there are several ways
to install python3 on Ubuntu 16.04 LTS.
This
article assumes you have at least basic knowledge of linux, know how to
use the shell, and most importantly, you host your site on your own
VPS. The installation is quite simple and assumes you are running in the
root account, if not you may need to add ‘sudo’ to the commands to get
root privileges. I will show you through the step by step installation
Python 3 on a Ubuntu 16.04 (Xenial Xerus) server.
Install Python 3 on Ubuntu 16.04 LTS
Step
1. First make sure that all your system packages are up-to-date by
running these following apt-get commands in the terminal.
Step 2. Installing Python 3.
Method 1. Install Python 3.6 on Ubuntu 16.04 from PPA.
You can install Python 3.6 on Ubuntu 16.04 using this PPA:
You can check python version on Ubuntu from command line:
Method 2. Installing Python 3.6 on Ubuntu 16.10 from Repository
Use the following command to install Python 3:
Then check the Python version:
Method 3. Compile and Install Python 3.6 on Ubuntu 16.04
First, we need to install some build dependencies using the commands below:
Then, download Python 3.6 from source:
Now cd into the source directory, configure the build environment and install:
Once the process is complete, we can check the version of Python 3 that is installed in the system by typing:
Congratulation’s! You have successfully installed Python.
Thanks for using this tutorial for installing Python 3 on Ubuntu 16.04
LTS (Xenial Xerus) system. For additional help or useful information,
we recommend you to check the official Python web site.
Post a Comment