Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 543 Bytes

protobuf-install-and-introduction.md

File metadata and controls

35 lines (22 loc) · 543 Bytes

Protobuf Install And Introduction

Created: 2022-08-19 01:07

Install

官方安装文档:https://grpc.io/docs/protoc-installation/

安装后 protoc 命令可用

# ubuntu
sudo apt install protobuf-compiler

# mac
brew install protobuf

用法

Python

python protobuf demo code

先安装 python 的 protobuf 包,

pip3 install protobuf

否则执行 python 文件时报错

ImportError: No module named google.protobuf