ImportError: DLL load failed while importing _ssl: 找不到指定的模块。

import _ssl
ImportError: DLL load failed while importing _ssl: 找不到指定的模块。

目前发现两个可能会导致这个问题

1.环境变量没配置全

解决方案:
在环境变量中加入

    D:\anaconda
    D:\anaconda\Scripts
    D:\anaconda\Library\bin

正确安装anaconda的话会自动添加以下环境变量
ImportError: DLL load failed while importing _ssl: 找不到指定的模块。_第1张图片

2.使用的是conda虚拟环境

解决方案:
以上环境变量没有问题的话,在conda 的base环境中是能正常运行程序的。但是在自己创建的环境中还是可能会报错。

提供一种解决方案:将虚拟环境的地址也加入环境变量中。

D:\anaconda\envs\pytorch\Library\bin
D:\anaconda\envs\pytorch\Scripts

你可能感兴趣的:(pytorch,python,深度学习)