The ordinal 242 could not be located in the dynamic link library Anaconda3Libraryinmkl_intel_thread.dll(在动态链接库 Anaconda3Libraryinmkl_intel_thread.dll 中找不到序数 242)
问题描述
我刚刚在 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.
官方答案是 这里.
这篇关于在动态链接库 Anaconda3Libraryinmkl_intel_thread.dll 中找不到序数 242的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在动态链接库 Anaconda3Libraryinmkl_intel_thread.dll 中找


- 沿轴计算直方图 2022-01-01
- 分析异常:路径不存在:dbfs:/databricks/python/lib/python3.7/site-packages/sampleFolder/data; 2022-01-01
- pytorch 中的自适应池是如何工作的? 2022-07-12
- 使用Heroku上托管的Selenium登录Instagram时,找不到元素';用户名'; 2022-01-01
- python check_output 失败,退出状态为 1,但 Popen 适用于相同的命令 2022-01-01
- 如何在 python3 中将 OrderedDict 转换为常规字典 2022-01-01
- padding='same' 转换为 PyTorch padding=# 2022-01-01
- python-m http.server 443--使用SSL? 2022-01-01
- 如何在 Python 的元组列表中对每个元组中的第一个值求和? 2022-01-01
- 如何将一个类的函数分成多个文件? 2022-01-01