如何让pip从需求文件中运行特定命令?

How to make pip run a specific command from requirements file?(如何让pip从需求文件中运行特定命令?)

本文介绍了如何让pip从需求文件中运行特定命令?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在我的quirements.txt文件中为torchtorchvision添加行,以便于克隆,我将在不久的将来从计算机移动到计算机和云。

我想要一个简单的pip install -r requirements.txt,并为我的项目完成它。

> pip freeze > requirements.txt

提供类似于

的内容
...
torch==1.5.0
torchvision==0.6.0
...

但是,pip install -r requirements.txt(实际上是pip install torch)不起作用,相反,如official torch site所示,命令应该是:

pip install torch===1.5.0 torchvision===0.6.0 -f https://download.pytorch.org/whl/torch_stable.html

如何使需求文件反映这一点?

我的桌面是Windows 10。


奖金问题:

我的云是基于Linux的。
如何使需求文件同时适合桌面和云?

推荐答案

You can use the same options in your requirements.txt file,例如

torch===1.5.0
torchvision===0.6.0
-f https://download.pytorch.org/whl/torch_stable.html

然后只需运行pip install -r requirements.txt

这篇关于如何让pip从需求文件中运行特定命令?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:如何让pip从需求文件中运行特定命令?

基础教程推荐