不相容numpy的和html5lib为tensorflow(incompatible numpy a

2019-09-28 22:10发布

tensorflow 1.7.0 has requirement numpy>=1.13.3, but you'll have numpy 1.11.0 which is incompatible. tensorboard 1.7.0 has requirement html5lib==0.9999999, but you'll have html5lib 0.999 which is incompatible. tensorboard 1.7.0 has requirement numpy>=1.12.0, but you'll have numpy 1.11.0 which is incompatible.

请参阅此截图

为什么这些消息显示出来......即使我已经安装了正确的版本?我已经升级,并一遍又一遍地重新安装它们。 我也重新安装了画中画和也尝试安装方便的点子。 但问题仍然存在。

难道什么是错了我的操作系统安装? (Ubuntu的16.4)

这些都是一些结果我得到了通过运行pip freeze

tensorboard==1.8.0 
tensorflow==1.8.0 
numpy==1.14.3 
html5lib==0.9999999 
httplib2==0.9.1

Answer 1:

显示出来,因为错误

  1. 安装lxml需要安装numpy-1.11.0
  2. tensorflow (已安装)需要numpy>=1.13.3 (已安装)

要解决,您可以:

  1. 降级tensorflow
  2. 尝试安装lxml的较新版本。


Answer 2:

也许你需要卸载并重新安装兼容的版本

pip uninstall tensorflow-tensorboard

然后重新安装

pip install tensorflow-tensorboard==<your_version>

防爆。 我做了

pip install tensorflow-tensorboard==1.5.1


文章来源: incompatible numpy and html5lib for tensorflow