如何验证pip的--extra-index-url?

时间:2019-07-23 12:04:53

标签: python python-3.x pip

我无法从全局--extra-index-url文件中用pip.ini定义的本地包索引中找到某些应找到的包。

如何验证我的pip是否正确使用了此密码?在我的场景中,我使用的是虚拟环境。

我尝试了pip config list,因为它在pip help中听起来很有希望,但是我没有得到 作为输出。

1 个答案:

答案 0 :(得分:0)

尝试安装不存在的模块:

pip install --extra-index-url=https://example.com made-up

就我而言(除了很多错误),我也得到了:

Looking in indexes: https://pypi.org/simple, https://example.com
Collecting made-up
  Could not find a version that satisfies the requirement made-up (from versions: )
  No matching distribution found for made-up

如果设置正确,您应该在输出中看到额外的回购URL。如果使用默认设置运行,则不会显示"Looking in indexes"行。