anaconda报错如下AttributeError: module 'lib' has no attribute 'OpenSSL_add_all_algorithms'怎么解决
时间: 2023-10-30 16:06:25 浏览: 376
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
这个问题可能是由于OpenSSL库版本不兼容造成的。你可以尝试卸载OpenSSL库,并重新安装较早的版本。具体步骤如下:
1. 在Anaconda Prompt中运行以下命令卸载OpenSSL库:
```
conda uninstall openssl
```
2. 安装较早的版本,如下所示:
```
conda install openssl=1.0.2t
```
注意,你可以将“1.0.2t”替换为任何较早的版本号,以满足你的需要。
3. 安装完毕后,重新启动Anaconda Prompt并尝试再次运行你的程序。
希望这能帮到你!
阅读全文