简体   繁体   中英

Configuring trusted-host for setuptools

When I call pip install for a PyPI repository with an untrusted certificate, I can skip SSL verification by using --trusted-host option:

$ pip install googleapis-common-protos --index-url https://maven.mycompany.org/artifactory/api/pypi/pypi-virtual/simple --trusted-host maven.mycompany.org
Looking in indexes: https://maven.mycompany.org/artifactory/api/pypi/pypi-virtual/simple
Collecting googleapis-common-protos
  Downloading https://maven.mycompany.org/artifactory/api/pypi/pypi-virtual/packages/61/29/1549f61917eadd11650e42b78b4afcfe9cb467157af4510ab8cb59535f14/googleapis-common-protos-1.5.6.tar.gz
...
Installing collected packages: googleapis-common-protos
Successfully installed googleapis-common-protos-1.5.6

However, when using setuptools, I see no option to configure it:

$ python setup.py test
running pytest
Searching for googleapis-common-protos==1.5.3
Reading https://maven.mycompany.org/artifactory/api/pypi/pypi-virtual/simple/googleapis-common-protos/
Authenticating as uploader for https://maven.mycompany.org/artifactory/api/pypi/pypi-virtual/simple/googleapis-common-protos/ (from .pypirc)
Download error on https://maven.mycompany.org/artifactory/api/pypi/pypi-virtual/simple/googleapis-common-protos/: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:726) -- Some packages may not be found!

setuptools uses easy_install under the hood, and easy_install doesn't have such option. See

python setup.py easy_install --help

--trusted-host is only available with pip .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM