当前位置: 代码迷 >> 综合 >> Win10 下安装 PyTorch
  详细解决方案

Win10 下安装 PyTorch

热度:128   发布时间:2023-10-20 20:51:34.0

参考:https://blog.csdn.net/weixin_40146173/article/details/83691813

上PyTorch官网根据自己的电脑配置选择相应版本(以下为我的配置)

Win10 下安装 PyTorch

可以使用Conda或者Pip方式安装,建议用Pip安装速度快。

在装好Anaconda以后,打开Anaconda prompt

pip install -U pip  升级pip命令

pip3 install PyHamcrest  PyHamcrest安装命令

然后用pip命令进行安装

pip3 install http://download.pytorch.org/whl/cpu/torch-0.4.1-cp37-cp37m-win_amd64.whl
pip3 install torchvision

(以上安装过程不用翻墙,速度很快)
Win10 下安装 PyTorch

测试是否安装成功  (参考:https://www.cnblogs.com/HongjianChen/p/9435718.html)

cmd下运行python

C:\Users\Administrator>python
Python 3.6.6 (v3.6.6:4cf1f54eb7, Jun 27 2018, 03:37:03) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy  #先看看numpy的版本信息
>>> print(numpy.__version__)
1.14.5
>>> import torch  
>>> print(torch.__version__)
0.4.1         #输出0.4.1,说明Windows下的PyTorch0.4.1安装成功!

 

  相关解决方案