成功解决tensorflow.keras: AttributeError: ‘str‘ object has no attribute ‘decode‘

tensorflow.keras: AttributeError: ‘str’ object has no attribute ‘decode’

出现该问题,解决分两步首先检测自身的版本是否对应,
成功解决tensorflow.keras: AttributeError: ‘str‘ object has no attribute ‘decode‘_第1张图片

然后如果版本合适

就是下面这个原因“

h5py版本太高了,降版本即可:

先卸载之前的版本
pip uninstall h5py
然后安装
pip install h5py==2.10.0 -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

即可解决该问题!

你可能感兴趣的:(ubuntu,tensorflow,keras)