Skip to content

Instantly share code, notes, and snippets.

@smijar
Last active July 24, 2022 13:24
Show Gist options
  • Save smijar/7fcbd07c3acb43c66b898bb25bdbf62b to your computer and use it in GitHub Desktop.
Save smijar/7fcbd07c3acb43c66b898bb25bdbf62b to your computer and use it in GitHub Desktop.
install python-pip on Centos 7 minimal
# 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
@mingrammer
Copy link

Thanks a lot.

@jerrylau91
Copy link

thanks so much

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment