运行python代码时出现错误,原因是Python2和Python3在字符串编码上的区别。
AttributeError: ‘str‘ object has no attribute ‘decode‘
解决方法是:
pip install 'h5py<3.0.0' -i https://pypi.tuna.tsinghua.edu.cn/simple
或者
pip install h5py==2.8.0 -i https://pypi.tuna.tsinghua.edu.cn/simple
参考
http://t.csdn.cn/mhzdD