我有我的pip.conf
文件,如下所示:pip.conf不注意可信主機
[global]
trusted-host = <private IP>
extra-index-url = http://<private IP>/pypi
但是,每當我嘗試從私人回購的PyPI安裝一個軟件包(只是一個測試包),我收到指示我添加--trusted-host <private IP>
的錯誤。如果我這樣做,我可以成功安裝該軟件包,所以我知道pip
正在讀取pip.conf
文件。爲什麼它不尊重trusted-host
配置?我三重檢查了IP在配置文件中匹配。
谷歌的幾個博客和粗略搜索似乎表明它應該。 (https://pseudoscripter.wordpress.com/2016/05/07/pip-the-repository-located-at-some-ip-is-not-a-trusted-or-secure-host-and-is-being-ignored/)