Conda Github issues #8273
Environment Information
conda version : 4.5.12
Resolution
I did a trace with Process Monitor.
D:\Anaconda3\DLLs_ssl.pyd
search for the OpenSSL DLLs but in the wrong/current location!
As they are not found the search goes to C:\Windows\System32
where we have the same DLLs, installed by an other application, but with a different version. :-(
The DLLs delivered by Anaconda3 are located here:
D:\Anaconda3\Library\bin
My workaround:
I have copied the following files
libcrypto-1_1-x64.*
libssl-1_1-x64.*
from D:\Anaconda3\Library\bin
to D:\Anaconda3\DLLs
.
笔记
假设安装目录为D:\Anaconda3
,那么将D:\Anaconda3\Library\bin
目录下的
libcrypto-1_1-x64.*
libssl-1_1-x64.*
这些文件拷贝至D:\Anaconda3\DLLs
目录即可。
网友评论