Python 包依赖导致错误
Python package dependency is causing an error
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 的新手)
由于缺乏声誉,我无法发表评论:
您是否在他们的网站上安装了带有所有提到的依赖项的 scypy?
python -m pip install --user numpy scipy matplotlib ipython jupyter pandas sympy nose
这就是我解决问题的方法(在 Windows):-
1. 我使用 python.exe 程序卸载了 Python。
2. 为 Windows 安装 anaconda - 它安装 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 的新手)
由于缺乏声誉,我无法发表评论:
您是否在他们的网站上安装了带有所有提到的依赖项的 scypy?
python -m pip install --user numpy scipy matplotlib ipython jupyter pandas sympy nose
这就是我解决问题的方法(在 Windows):-
1. 我使用 python.exe 程序卸载了 Python。
2. 为 Windows 安装 anaconda - 它安装 python 以及依赖项和许多常用库。