Question

Je me demandais s'il y a un moyen d'installer pytorch dans les fenêtres comme la façon dont nous pouvons installer tensorflow. Ma machine ne supporte pas docker.

Était-ce utile?

La solution

PyTorch devrait fonctionner correctement dans WSL (CPU uniquement).

Autres conseils

En date du 14 Août, 2017, vous pouvez installer Pytorch de la fourchette de peterjc123 comme suit. À l'heure actuelle, python 3.5 et 3.6 sont pris en charge.

# 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

Support pytorch pour Windows lien

Licencié sous: CC-BY-SA avec attribution
scroll top