Frage

Ich habe mich gefragt, ob es eine Möglichkeit gibt, Pytorch in Fenstern zu installieren, wie wir den Tensorflow installieren können. Meine Maschine unterstützt Docker nicht.

War es hilfreich?

Lösung

Pytorch sollte in WSL (nur CPU) gut funktionieren.

Andere Tipps

Ab dem 14. August 2017 können Sie Pytorch von installieren peterjc123Gabel wie folgt. Derzeit werden Python 3.5 und 3.6 unterstützt.

# 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

Pytorch -Unterstützung für Windows Verknüpfung

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit datascience.stackexchange
scroll top