====== Install Python 3 on CentOS 7 ====== ===== Update your system ===== This step //may// not be required. I didn't have to do this when I updated my host machine. yum -y update yum group install "Development tools" ===== EPEL Packages ===== Add the EPEL (Extra Packages for Enterprise Linux) repository to your system: yum install epel-release ===== Python 3 and Pip ===== Finally, install Python 3 and the Pip package manager: yum install python34 yum install python34-pip If the Python version is incorrect, you can locate the available version with a Yum search, as follows: yum search python3 {{tag>python}}