2

我正在使用一些 github django 包的前沿版本,这些版本具有我不想安装的依赖项。

在开发中,在我自己的计算机上,我可以pip install在命令行中使用并使用--no-dependencies标志。但是,我的测试和生产环境需要一个需求文件来进行部署。不幸的是,该--no-dependencies标志不能在需求文件中使用,如下所述:https ://pip.pypa.io/en/latest/reference/pip_install.html#requirements-file-format 。

有没有办法告诉 pip 在使用需求文件时不要安装依赖项?

4

1 回答 1

5

我通过使用两个需求文件并调用 pip 两次来解决这个问题。

pip install -r requirements.txt
pip install --no-deps -r no_deps.txt
于 2016-01-19T22:30:24.837 回答