记录解决TypeError: Expected a message Descriptor, got Descriptor问题
作者:互联网
发生这个问题是 tensorflow 与 protobuf 版本不对应
首先,在anaconda中查看安装的包的情况 pip list ,卸载掉 tensorflow 和 protobuf
pip uninstall tensorflow==1.0.0 pip uninstall protobuf==3.5.0.post1
接着重新安装tensorflow
pip install tensorflow==1.0.0
在安装过程中可以看出,tensorflow重新下载了protobuf的依赖,查看可以看出protobuf安装的版本是3.19.1
tensorflow与protobuf对应的版本如下
tensorflow 1.5 --------------- protobuf 3.4
tensorflow 1.12 --------------- protobuf 3.6
tensorflow 1.10 --------------- protobuf 3.6
tensorflow 1.0.0 --------------- protobuf 3.1
标签:3.6,TypeError,1.0,protobuf,---------------,Descriptor,pip,Expected,tensorflow 来源: https://blog.csdn.net/wrsnhx1234/article/details/121611445