[TOC]
## 安装 PyTorch
环境:Win10,集成显卡
### step1:安装 Anaconda
安装 Anaconda,直接下对应 python3.6 版本的,版本对应关系如下表
![](https://img.kancloud.cn/22/f3/22f30a23e64056363245257bda28d19e_740x658.png)
去[清华镜像源](https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/?C=N&O=D)下载会更快,也可以选择[官网下载](https://www.anaconda.com/distribution/),我选择的版本如图:
![](https://img.kancloud.cn/06/9e/069e2aa88068846cf6595eefa6930dfd_1341x327.png)
下载完成后一路 next 即可,勾选自动添加环境变量
### step2:安装 PyTorch
推荐打开命令行直接执行如下命令:
```
pip install https://download.pytorch.org/whl/cpu/torch-1.1.0-cp36-cp36m-win\_amd64.whl -i http://mirrors.aliyun.com/pypi/simple --trusted-host mirrors.aliyun.com
```
这是用的清华源,快,也可参考[这篇博客](https://blog.csdn.net/weixin_43012220/article/details/83786637)官网下载
### step3:检查
如图,导入 torch 没有报错应该就没有问题了。
![](https://img.kancloud.cn/aa/78/aa7839cf2bccaf48a0bcc4d2ad5ed359_1046x154.png)
### 插曲
完成 step2 后可能会出现以下错误:
![](https://img.kancloud.cn/5c/d4/5cd4c0df07380818d71829b354ebdab0_974x135.png)
解决方案:可能是 numpy 版本问题
执行如图所示的命令:
![](https://img.kancloud.cn/b0/23/b023b5af04092462d971c2bc67641aa3_1194x268.png)
也可能会有如下的警示:
![](https://img.kancloud.cn/ed/4f/ed4fc4d345dd33f93d500ee6a06f4485_610x27.png)
解决方案:执行以下命令
```
pip install msgpack-python
pip install msgpack
```