Pregunta

Me preguntaba, si hay alguna forma de instalar Pytorch en Windows como la forma en que podemos instalar TensorFlow. Mi máquina no es compatible con Docker.

¿Fue útil?

Solución

Pytorch debería funcionar bien en WSL (solo CPU).

Otros consejos

A partir del 14 de agosto de 2017, puede instalar Pytorch desde peterjc123La bifurcación de la siguiente manera. Actualmente, Python 3.5 y 3.6 son compatibles.

# If your main Python version is not 3.5 or 3.6
conda create -n test python=3.6 numpy pyyaml mkl

# for CPU only packages
conda install -c peterjc123 pytorch

# for Windows 10 and Windows Server 2016, CUDA 8
conda install -c peterjc123 pytorch cuda80

# for Windows 10 and Windows Server 2016, CUDA 9
conda install -c peterjc123 pytorch cuda90

# for Windows 7/8/8.1 and Windows Server 2008/2012, CUDA 8
conda install -c peterjc123 pytorch_legacy cuda80

Soporte de Pytorch para Windows Enlace

Licenciado bajo: CC-BY-SA con atribución
scroll top