ubuntu下设置conda源为清华源

~/.condarc文件修改如下:

channels:
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
  - defaults
show_channel_urls: true

pip设置清华源

pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

conda创建env的时候注意要指定python版本,否则create成功后没有python环境,如下:

conda create -n torch17 python=3.8

而不是下面的:

conda create -n torch17

你可能感兴趣的:(Ubuntu,Pytorch)