将--trusted-host添加到pycharm软件包安装程序

时间:2019-11-29 11:05:10

标签: python pycharm

我正在尝试将--trusted-host添加到Pycharm(2018.2.5社区版本)软件包安装程序中。但是,它不起作用。

例如:python -m pip install scipy --trusted-host pypi.org

enter image description here

我什至尝试在选项中添加“ --trusted-host pypi.org”。仍然不起作用。

enter image description here

1 个答案:

答案 0 :(得分:1)

在您的输出中,它表明您仅在供应

--trusted-host

作为选项,并且PyCharm构建命令的方式已尝试执行

pip install --trusted-host scipy

因此出现错误“您必须给出至少一项安装要求”。这与您刚刚尝试不带参数执行pip install的错误相同。它已将scipy解释为--trusted-host选项的一部分,因此您没有尝试安装任何东西。

添加

--trusted-host pypi.org

该选项对我有效。