centos安装anaconda+pytorch

跳板机连接服务器教程

一 安装anaconda

1.anaconda下载地址
在这里插入图片描述
之后用xftp传到服务器

bash Anaconda3-2020.xxxxxxxxxxxxxx.sh

一路yes就好
2.安装完成后输入python 或conda --version测试
有反应没报错就成功了 我已经把窗口关了就不截图了

如果失败了呢

source ~/.bashrc

用这条命令刷新一下试试,如果还是不行的话删了重装一下吧 毕竟看脸和电脑

用conda安装pytorch

找到对应版本的cuda(这是10.2)

conda install pytorch torchvision cudatoolkit=10.2 -c pytorch

然后开飞!
centos安装anaconda+pytorch_第1张图片

???
再飞!
centos安装anaconda+pytorch_第2张图片
???
折腾了半天是网不行 换成清华园的镜像

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/

conda config --set show_channel_urls yes

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

奥利给!
在这里插入图片描述
测试一下:
centos安装anaconda+pytorch_第3张图片

完成~

你可能感兴趣的:(anaconda,cuda)