Last active
July 24, 2022 13:24
-
-
Save smijar/7fcbd07c3acb43c66b898bb25bdbf62b to your computer and use it in GitHub Desktop.
install python-pip on Centos 7 minimal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install epel-release on centos | |
yum -y install epel-release | |
yum -y update | |
# install python-pip from epel | |
yum -y install python-pip | |
# Verify using: | |
pip -V | |
# Upgrade pip | |
pip install --upgrade pip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks a lot.