Python包依赖关系导致

2024-10-05 11:43:57 发布

您现在位置:Python中文网/ 问答频道 /正文

Python中Scipy包内的文件夹Python37\site-packages\scipy\sparse\linalg\isolve\具有以下文件:_iterative.cp37-win_amd64.pyd

运行Python文件时,出现以下错误:-
File "C:\......\Python37\site-packages\scipy\sparse\linalg\isolve\iterative.py", line 10, in <module> from . import _iterative ImportError: DLL load failed: The specified module could not be found

(我不熟悉Windows上的Python)


Tags: 文件文件夹packagessitescipywinamd64module
2条回答

由于缺乏声誉,我无法发表评论:

你在他们的网站上安装了scypy和所有提到的依赖关系吗

python -m pip install  user numpy scipy matplotlib ipython jupyter pandas sympy nose

(摘自https://www.scipy.org/install.html

这就是我如何(在Windows上)解决问题的方法:-
1.我用Python.exe程序卸载了Python
2.安装anaconda for Windows-它安装python以及依赖项和许多公共库

相关问题 更多 >

    热门问题