Python Error SSL on CentOS 7


$ yum update -y && yum install -y epel-release && yum install -y iproute python-setuptools hostname inotify-tools yum-utils which python-meld3 python-pip && yum clean all && pip install supervisor


If you got error SSL, execute these command

$ curl https://bootstrap.pypa.io/pip/2.7/get-pip.py | python

$ pip install --trusted-host pypi.python.org pytest-xdist

$ pip install --trusted-host pypi.python.org --upgrade pip


Source :

https://stackoverflow.com/questions/16370583/pip-issue-installing-almost-any-library

Comments