如何告诉 tox 使用受信任的主机和索引?
How to tell to tox use trusted host and index?
我对 pip3 使用以下用法从我的主机安装模块:
pip3 install tox -i http://myhost/sample+ --trusted-host
我下载了一个沼泽 code.It 使用 tox
安装模块。
我如何告诉 tox
使用 myhost 安装模块?
您可以使用 tox
中的 install_command 选项。
这应该会在您的 tox.ini 配置中产生这样的命令:
[testenv:your_env]
install_command=pip install --index-url=http://myhost/sample+ --trusted-host=http://myhost/sample+ {opts} {packages}
我对 pip3 使用以下用法从我的主机安装模块:
pip3 install tox -i http://myhost/sample+ --trusted-host
我下载了一个沼泽 code.It 使用 tox
安装模块。
我如何告诉 tox
使用 myhost 安装模块?
您可以使用 tox
中的 install_command 选项。
这应该会在您的 tox.ini 配置中产生这样的命令:
[testenv:your_env]
install_command=pip install --index-url=http://myhost/sample+ --trusted-host=http://myhost/sample+ {opts} {packages}