Error([('SSL routines', 'ssl3_get_record', 'decryption failed or bad record mac')]) 解决办法

Error([('SSL routines', 'ssl3_get_record', 'decryption failed or bad record mac')]) 这个错误是在了Linux服务器山安装用anaconda安装pytorch时报的错,后面经过多方尝试总算是找到了解决办法。

一、添加清华大学的镜像。

  说来也是很奇怪,我百度的时候都是说清华的不能用了,要用中科大的,结果我中科大的不行,反而是最后试了试清华的可以了,在命令行中输入如下命令:

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 --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/

conda config --set show_channel_urls yes

二、然后运行相应的命令,去掉后面的部分

conda install pytorch torchvision cudatoolkit=10.1

三、检查结果

 进入python:

 输入

import torch
torch.__version__

结果:

 

你可能感兴趣的:(python,Linux)