ModuleNotFoundError: No module named 'scipy.sparse.linalg.eigen.arpack'; 'scipy.sparse.linalg.eigen' is not a package
时间: 2024-03-03 20:47:04 浏览: 516
无需降级scipy的情况下解决AttributeError: module ‘scipy.misc’ has no attribute ‘imread’,imresize,imsave等问题
这个错误通常表示您的Python环境中缺少SciPy的某些组件,您需要安装SciPy的完整版本。您可以通过以下命令来安装SciPy:
```
pip install scipy
```
如果您已经安装了SciPy,请确保它是最新版本。您可以通过以下命令来更新SciPy:
```
pip install --upgrade scipy
```
如果这些步骤不起作用,您可能需要卸载SciPy并重新安装它。
阅读全文