关于AlreadyExistsError: Another metric with the same name already exists.的解决方案

这项错误发生在我刚安装完tensorflow,想import keras包的时候发生了如下的错误:

Tensorflow.python.framework.errors_impl.
AlreadyExistsError: Another metric with the same name already exists

经过一番查询问题应该是keras包版本的问题,具体原因我现在还不知道,但是经验证,解决方法如下:
1、卸载已有的keras包,博主目前出错版本是2.7

pip uninstall keras

2、安装指定版本的keras包,我安装的版本是2.6.0

pip install keras==2.6.0

到这里就可以正常import keras包了,结果如下:
在这里插入图片描述

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