RuntimeError: module compiled against API version 0xc but this version of numpy is 0xb

配置tensorflow时,出现这个报错,一定是存在多个numpy

1.先pip uninstall numpy,

2.再卸载一次pip uninstall numpy(这时电脑中应该不存在numpy)

3.这时pip install numpy==1.16.4 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

4.执行训练py

5.报错ImportError: No module named 'matplotlib'

重点来了!

如果你使用conda install matplotlib,那么会自动安装上numpy=1.13.1的版本,我们需要的1.16.4的版本,所以不能用conda!

解决方案:

pip install matplotlib

BUG解决!

你可能感兴趣的:(人工智能,tensorflow,python,anaconda)