实验时遇到过如下错误
ImportError: DLL load failed: 找不到指定的模块。
往前查看错误位置发现如下错误
from ._nnls import nnls
或者
from scipy import special, optimize, from ._nnls import nnls
解决方法:
依次执行下述命令
conda remove --force numpy
conda remove --force scipy
pip install -U numpy
pip install -U scipy
再次回到Pycharm,等待环境检索更新后,运行程序,成功运行!