User Tools

Site Tools


install_python_3_on_centos_7

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
install_python_3_on_centos_7.txt · Last modified: 2023/07/14 13:22 by jimc