Python3 Pip3 Command Not Found After Installing Package (Centos 7)
I’ve just deployed a VM on microsoft azure, a Centos 7(B1s) Right now I am trying to install python3 and pip3. I followed this tutorial to install them. Then I checked the packag
Solution 1:
CentOS 7
The 3 year old "tutorial" https://linuxhint.com/install-python-pip-centos7/ is about pip34, python34 .
Today python3 is in the CentOS 7 Base repo http://mirror.centos.org/centos/7.9.2009/os/x86_64/Packages/
→ python3-3.6.8-17.el7
, python3-pip-9.0.3-8.el7
(pip3)
Install python3 :
# yum install python3-devel python3-pip
Post a Comment for "Python3 Pip3 Command Not Found After Installing Package (Centos 7)"