我有一个Pipfile
,看起来像以下内容:
[[source]]
url = "https://my-private-artifactory-index/simple"
verify_ssl = true
name = "private"
[packages]
mypackage = {version="*", index="private"}
我的意图是仅从我的私有索引中安装mypackage
,即使例如pypi
上有较新的软件包。但是,看来pipenv install
既查询我的私有索引,又查询pypi
来查询mypackge
。这是预期的行为吗? pipenv documentation中的文本表明不是,但是也许我遗漏了一些东西。我知道我可以使用PIPENV_PYPI_MIRROR
来使pipenv
使用镜像而不是pypi
,但这将适用于Pipfile
中的所有软件包。有没有办法让pipenv
从pypi
安装其他软件包,同时在我的私有索引中查找特定的软件包?