TECHIES WORLD

For Techs.... Techniques.... Technologies....

CpanelLinux

How to install python3 in Centos

Python is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple but effective approach to object-oriented programming. Python’s elegant syntax and dynamic typing, together with its interpreted nature, make it an ideal language for scripting and rapid application development in many areas on most platforms.

This article explains the steps to install python3 in Centos server.

Step1: Install epel repository

#yum install epel-release

Step2: Install python 3.4

#yum install python34

Step3: Install pip and setuptools

#curl -O https://bootstrap.pypa.io/get-pip.py
#/usr/bin/python3.4 get-pip.py

 

Leave a Reply