Domanda

mi chiedevo, se non v'è alcun modo per installare pytorch in finestre come il modo in cui possiamo installare tensorflow. La mia macchina non sta sostenendo finestra mobile.

È stato utile?

Soluzione

PyTorch dovrebbe funzionare bene in WSL (solo CPU).

Altri suggerimenti

A partire dal 14 agosto 2017, è possibile installare Pytorch dalla tavola di peterjc123 come segue. Attualmente, python 3.5 e 3.6 sono supportati.

# 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

Supporto pytorch per le finestre link

Autorizzato sotto: CC-BY-SA insieme a attribuzione
scroll top