Home > Article > System Tutorial > How to install missing python-pip module in centos7?
Question:
The Python-pip module does not exist in centos 7 because the source of derivative distributions such as centos lags behind or does not exist. Even using yum to search for python-pip, the package cannot be found.
Answer::
In order to use the installation package that is delayed in installation or does not exist in the source, the extended source EPEL needs to be installed. Extended source EPEL (http://fedoraproject.org/wiki/EPEL) is a project created by the Fedora community to provide high-quality software packages for RHEL and derivative distributions such as CentOS and ScientificLinux.
Install the extension source: sudo yum -y install epel-release
Install the python-pip module: sudo yum install python-pip
The above is the detailed content of How to install missing python-pip module in centos7?. For more information, please follow other related articles on the PHP Chinese website!