numpy version升级出现的问题

之前用tensorflow 和cv2一直没问题,今天打开程序运行时报错ImportError。

ImportError:Something is wrong with the numpy installation. 
While importing we 	detected an older version of numpy in ['/home/zhu/.local/lib/python3.6/site-packages/numpy'].
One method of fixing this is to repeatedly uninstall numpy until none is found, then reinstall this version.

报错是因为tensorflow和opencv有依赖关系,numpy版本没有更新,导致出错。
用pip3 install -U numpy尝试升级了一下numpy ,结果升级成功,但程序还是报错。用pip3 list指令查看安装的所有包,numpy的版本确实最新版本。网上找了很多方法,都是说升级就解决。看到错误信息的最后一句明白了,人家给了解决办法,我还傻乎乎的去找。

One method of fixing this is to repeatedly uninstall numpy until none is found, then reinstall this version.

先pip3 uninstall numpy 卸载了numpy,在重新安装了一次 问题搞定。
如果你安装的numpy升级了多次,可能你系统中有多个版本的numpy,一定要把之前版本全部卸载,在重新安装最新版才行,不然老版本还是会报错,可以一直执行pip3 unstall numpy直到出现Cannot uninstall requirement numpy, not installed
也行。在安装一次新版本就行了。
在尝试其他升级办法时也出现了其他的错误信息,因为没及时保存,错误信息就不贴了,解决方法应该是一样的。

你可能感兴趣的:(技术)