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 中找
基础教程推荐
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
