web-dev-qa-db-fra.com

Inclure l'installation de .whl dans requirements.txt

Comment l'inclure dans le fichier requirements.txt? Pour Linux:

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

POUR 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

Vous pouvez utiliser marqueurs d'environnement :

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

(Double entrées Linux: linux2 pour Python 2, linux pour Python 3.)

13
Chris Warrick