Python‎ > ‎

1 Python SSL Verify Errors - during PIP INSTALL

Pip to bypass St Pius X SSL Self Signed - Security Restriction 

Include in your PIP INSTALL a list of Trusted Host sites to download package from.  This must be done 

> pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org pip setuptools --upgrade

Option to install into pip.ini file:

  • Open Command Prompt (Admin Mode if possible)
    • press "windows button" "C"
  • navigate to %APPDATA%\pip
    • cd %APPDATA%pip
  • create/edit pip.ini file
    • notepad pip.ini
  • Add following configuration into file:
[install]
trusted-host = 
pypi.org
files.pythonhosted.org

  • Save pip.ini file
Comments