这是我第一次安装python软件包。
我想安装翻皮包我的个人电脑上的anaconda3路径是
C:\Users\user\AppData\Local\Continuum\anaconda3在这个视频之后,我输入了anaconda提示符
cd "C:\Users\user\AppData\Local\Continuum\anaconda3"
python -m pip install flopy我得到了以下信息
Collecting flopy
Using cached https://files.pythonhosted.org/packages/65/f3/7d86d8d83e6d71a05557796d303604c24c9896743be861433471d576bbb7/flopy-3.2.12.zip并且出现了这个错误窗口
The ordinal 242 could not be located in the dynamic link library
c:\Users\user\AppData\Local\Continuum\anaconda3\Library\bin\mkl_intel_thread.dll. 安康达提示符
ERROR: Command errored out with exit status 2:
command: 'C:\Users\user\AppData\Local\Continuum\anaconda3\python.exe' -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\user\\AppData\\Local\\Temp\\pip-install-p3cq3l3y\\flopy\\setup.py'"'"'; __file__='"'"'C:\\Users\\user\\AppData\\Local\\Temp\\pip-install-p3cq3l3y\\flopy\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base pip-egg-info
cwd: C:\Users\user\AppData\Local\Temp\pip-install-p3cq3l3y\flopy\
Complete output (2 lines):
INTEL MKL ERROR: The operating system cannot run %1. mkl_intel_thread.dll.
Intel MKL FATAL ERROR: Cannot load mkl_intel_thread.dll.
----------------------------------------
ERROR: Command errored out with exit status 2: python setup.py egg_info Check the logs for full command output.mkl_intel_thread_dll就在这条路上
where mkl_intel_thread.dll
C:\Users\user\AppData\Local\Continuum\anaconda3\Library\bin\mkl_intel_thread.dll如有任何修正此错误的建议,我们将不胜感激。
发布于 2019-10-30 17:09:06
这段视频在Conda最佳实践方面是很古老的,只是糟糕的建议。FloPy可在Anaconda中的Conda通道上使用,可以通过
conda install -c conda-forge flopyhttps://stackoverflow.com/questions/58619018
复制相似问题