问题:
今天安装一个GitHub分享的代码,结果说有俩个模块不支持,后来numpy模块更新,还提示这个错误。然后我就开始寻找解决方法。。。
ERROR: tensorflow 1.13.1 has requirement tensorboard<1.14.0,>=1.13.0, but you'll have tensorboard 1.10.0 which is incompatible.
解决方法
三个命令就可以了,
1. pip uninstall tensorflow
2. pip uninstall tensorboard
3. pip install --upgrade tensorflow
谷歌搜到一个链接:
https://github.com/tensorflow/tensorboard/issues/1255
里面我找到一个方法就是我上面的三个步骤,想看可以看看,下面是我的过程图: