导入Scipy子模块时报错,出现的问题都是提示

61 from numpy._distributor_init import NUMPY_MKL  # requires numpy+mkl
No module named 'numpy._distributor_init'

 

解决办法:

先下载对就的 whl 程序( 请到 http://www.lfd.uci.edu/~gohlke/pythonlibs/ 上下载)。

我用的是Win10系统,就在 CMD 命令行中,进入C:\Python35\Scripts 目录,重新安装

pip install 下载目录\numpy-1.11.1+mkl-cp35-cp35m-win_amd64.whl

pip install 下载目录\scipy-0.18.0-cp35-cp35m-win_amd64.whl

 

安装完毕,就正常了。

Python导入Scipy子模块时出错

相关文章:

  • 2021-08-25
  • 2021-08-03
  • 2022-12-23
  • 2021-09-03
  • 2021-03-31
  • 2022-01-16
猜你喜欢
  • 2021-04-28
  • 2022-12-23
  • 2021-11-22
  • 2021-12-31
  • 2021-08-27
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案