web-dev-qa-db-ja.com

.whlインストールをrequirements.txtに含める

これをrequirements.txtファイルに含めるにはどうすればよいですか? Linuxの場合:

pip install http://download.pytorch.org/whl/cu75/torch-0.1.12.post2-cp27-none-linux_x86_64.whl 
pip install torchvision

MacOSの場合:

pip install http://download.pytorch.org/whl/torch-0.1.12.post2-cp27-none-macosx_10_7_x86_64.whl 
pip install torchvision 
15
Abhishek Bhatia

環境マーカー を使用できます:

http://download.pytorch.org/whl/cu75/torch-0.1.12.post2-cp27-none-linux_x86_64.whl ; sys_platform == "linux"
http://download.pytorch.org/whl/cu75/torch-0.1.12.post2-cp27-none-linux_x86_64.whl ; sys_platform == "linux2"
http://download.pytorch.org/whl/torch-0.1.12.post2-cp27-none-macosx_10_7_x86_64.whl ; sys_platform == "darwin"
torchvision

(2つのLinuxエントリ:linux2 for Python 2 ,、 linux for Python 3.)

13
Chris Warrick