原因:

因为安装numpy用的是 pip来安装的

pypi官方对于numpy的库已经升级了,但是升级后的版本与其他的库不匹配

所以报错

 

解决:

先把已经安装的numpy卸载: pip uninstall numpy

 

再安装低版本的numpy:

pip install -U numpy==1.14.5

相关文章:

  • 2022-12-23
  • 2021-05-15
  • 2021-06-25
  • 2022-12-23
  • 2022-02-10
  • 2022-02-05
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-07-02
  • 2022-12-23
  • 2022-12-23
  • 2021-07-14
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案