win10+anaconda安装cpu版本pytorch

win10+anaconda安装cpu版本pytorch

第一步:安装anaconda

Anaconda 安装包可以到 https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/ 下载。下载Anaconda3-5.3.1-Windows-x86_64.exe

第二步,更新anaconda国内镜像源

参考百度经验https://jingyan.baidu.com/article/1876c8527be1c3890a137645.html

  1. 通过 conda config 命令生成配置文件,这里,我们使用清华的镜像:https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/,首先,打开CMD,执行命令:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
  1. 执行命令:conda config --set show_channel_urls yes
  2. 此时,目录 C:\Users<你的用户名> 下就会生成配置文件.condarc,内容如下:
channels:
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
  - default
show_channel_urls: true
  1. 修改上述配置文件,删除上述配置文件 .condarc 中的第三行,然后保存,最终版本文件如下:
channels:
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
show_channel_urls: true

第三步,利用anaconda 的清华镜像安装pytorch

1.在window的CMD窗口里面(win + R然后输入cmd,再回车)

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/

2.输入安装命令conda install pytorch torchvision cpuonly
3.测试是否安装成功。在命令行下先运行python,再import torch。没有错误提示即为成功

把win10中python的pip源更换到国内

1.在C:\Users\Administrator下新建文件夹pip
2.在pip文件夹下新建pip.ini文件
3.在pip.ini中写入:

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=mirrors.aliyun.com

你可能感兴趣的:(ubuntu,无人机)