使用jupyter notebook 导入sklearn出现错误:
ImportError:DLL load failed while importing _arpack:找不到指定的程序。
解决办法:
第一,在cmd中卸载numpy,pandas,scipy,sklearn这几个库;(如果卸载中出现异常,不要管他,直到提示卸载成功)
pip uninstall numpy
pip uninstall pandas
pip uninstall scipy
pip uninstall sklearn
第二,重新安装这些库
pip install numpy
pip install pandas
pip install scipy
pip install scikit-learn
提示:这里安装sklearn不是用pip install sklearn!
最后,去jupyter notebook测试,解决问题。
如果上面这个方法还不能解决问题,用下面这个
在保证scipy和numpy安装成功的条件下,使用命令
pip install -U scikit-learn
重启一下就可以了。