在动态链接库 Anaconda3Libraryinmkl_intel_thread.dll 中找不到序数 242

2022-01-10 00:00:00 python python-3.x conda dll anaconda

问题描述

我刚刚在 Windows 10 上安装了 Anaconda 5.3 64 位 (Anaconda3-5.3.0-Windows-x86_64),在尝试运行 Spyder 时出现此错误.

I have just installed Anaconda 5.3 64-bit (Anaconda3-5.3.0-Windows-x86_64) on Windows 10 and am getting this error when trying to run Spyder.

pythonw.exe - 未找到序数

pythonw.exe - Ordinal Not Found

无法在动态链接库 C:UsersusernameAnaconda3Libraryinmkl_intel_thread.dll 中找到序数.

The ordinal could not be located in the dynamic link library C:UsersusernameAnaconda3Libraryinmkl_intel_thread.dll.

我使用 Dependency Walker 查看 DLL 中的函数,发现序号 242 在那里.与序数 242 关联的函数是 mkl_blas_zherk.

I used Dependency Walker to view the functions in the DLL and see that ordinal 242 is there. The function associated with ordinal 242 is mkl_blas_zherk.

谁能帮我解决这个问题或指导我找到一个资源来帮助我自己解决这个问题?

Could anyone help me fix this or direct me to a resource to help me figure it out myself?


解决方案

快速解答:

set CONDA_DLL_SEARCH_MODIFICATION_ENABLE=1

我为此设置了一个用户环境变量.

I set a user environment variable for this.

官方答案是 这里.

相关文章