我正在使用 python 2.7.6 版和 grpcio 1.12.0 版。我有一个带有消息定义的原型,其中包含类似这样的枚举
enum Test {
first 0;
reserved 1;
second 2;
}
现在当我尝试使用命令编译时
python -m grpc_tools.protoc -I./ --python_out=. --grpc_python_out=. mydata.proto
我收到类似这样的错误消息
Missing numeric value for enum constant
是因为python和grpcio版本吗?