Created
March 13, 2018 17:28
-
-
Save AlmogCohen/ed0a42884a8debfa43aa450f1662bdd8 to your computer and use it in GitHub Desktop.
Install and Use PIP on CentOS 6.9 with FIPS enabled
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
# 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