我想知道,是否有任何方法可以像我们可以安装TensorFlow一样在窗口中安装Pytorch。我的机器不支持Docker。

有帮助吗?

解决方案

Pytorch应该在WSL(仅CPU)中正常工作。

其他提示

截至2017年8月14日,您可以从 peterjc123如下。目前,支持Python 3.5和3.6。

# 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对Windows的支持 关联

许可以下: CC-BY-SA归因
scroll top