Skip to content

Instantly share code, notes, and snippets.

@AlmogCohen
Created March 13, 2018 17:28
Show Gist options
  • Save AlmogCohen/ed0a42884a8debfa43aa450f1662bdd8 to your computer and use it in GitHub Desktop.
Save AlmogCohen/ed0a42884a8debfa43aa450f1662bdd8 to your computer and use it in GitHub Desktop.
Install and Use PIP on CentOS 6.9 with FIPS enabled
# Installing PIP via RPM
curl -O ftp://mirror.switch.ch/pool/4/mirror/centos/6.9/cloud/x86_64/openstack-juno/common/python-pip-1.3.1-4.el6.noarch.rpm
sudo yum install python-pip-1.3.1-4.el6.noarch.rpm
# Upgrade PIP
sudo pip install --upgrade pip -i https://pypi.org/simple/
# Install packages using simple PyPi
pip install <SOME_PACKAGE> -i https://pypi.org/simple/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment