【Problem】ImportError: Something is wrong with the numpy installation. While importing we detected an

刚刚入门tensorflow,然后运行程序的时候报错了:

ImportError: Something is wrong with the numpy installation. While importing we detected an older version of numpy in [‘D:\Anaconda3\envs\tensorflow\lib\site-packages\numpy’]. One method of fixing this is to repeatedly uninstall numpy until none is found, then reinstall this version.


其实解决方法在错误中已经详细说明了,就是在环境中发现了两个版本的np,需要卸载干净numpy,再重新安装。

具体操作:
我的解决操作是在cmd下执行:
(一)
pip uninstall numpy
选择y确认卸载。
重复命令,直到显示找不到时才为卸载干净。
【Problem】ImportError: Something is wrong with the numpy installation. While importing we detected an
【Problem】ImportError: Something is wrong with the numpy installation. While importing we detected an
(二)
pip install numpy
执行该命令下载numpy,即可解决问题!

【Problem】ImportError: Something is wrong with the numpy installation. While importing we detected an

相关文章:

  • 2022-12-23
  • 2021-04-27
  • 2021-10-09
  • 2021-10-11
  • 2021-11-21
  • 2022-12-23
  • 2022-12-23
  • 2021-12-31
猜你喜欢
  • 2022-01-05
  • 2021-09-16
  • 2021-09-22
  • 2021-12-31
  • 2022-12-23
  • 2022-12-23
  • 2022-02-12
相关资源
相似解决方案