解决Anaconda安装包时出现的Entry Point错误

在 Anaconda Prompt 中安装 package 时出现 Entry Point Not Found 错误

python.exe - Entry Point Not Found

The procedure entry point OPENSSL_sk_new_reserve could not be located in the dynamic link library

XXXX\Anaconda3\Library\bin\libssl-1_1-x64.dll

随后在 Anaconda Prompt 中会出现下列错误信息:

[WinError 127] The specified procedure could not be found



解决办法:

检查 Anaconda/DLLS 以及 Anaconda/Library/bin 两个文件夹下的 libssl-1_1-x64.dll 文件的修改时间是否一致,如果不一致则将 DLLS 文件夹内的这个 dll 文件替换掉 Library/bin 文件夹内的那个 dll 文件即可



参考链接:

[1] https://github.com/conda/conda/issues/9003

[2] https://stackoverflow.com/questions/59645179/update-anaconda-failed-entry-point-not-found

你可能感兴趣的:(解决Anaconda安装包时出现的Entry Point错误)