要驗證在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是否成功并正常工作。