要验证在Ubuntu上安装的protobuf,请按照以下步骤进行:
protoc --version
如果您看到输出显示protobuf的版本号,则表示protobuf已成功安装在Ubuntu上。
syntax = "proto3";
message Example {
string message = 1;
}
protoc --proto_path=. --python_out=. example.proto
如果没有出现任何错误,并且在当前目录下生成了example_pb2.py文件,则表示protobuf的安装和功能是正常的。
通过以上步骤,您可以验证在Ubuntu上安装的protobuf是否成功并正常工作。