我无法从全局--extra-index-url
文件中用pip.ini
定义的本地包索引中找到某些应找到的包。
如何验证我的pip
是否正确使用了此密码?在我的场景中,我使用的是虚拟环境。
我尝试了pip config list
,因为它在pip help
中听起来很有希望,但是我没有得到 作为输出。
答案 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"
行。