欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python配置grpc环境

程序员文章站 2022-08-28 11:34:02
grpc 的安装: $ pip install grpcio 安装 protobuf 相关的 python 依赖库: $ pip install protob...

grpc 的安装:

$ pip install grpcio

安装 protobuf 相关的 python 依赖库:

$ pip install protobuf

安装 python grpc 的 protobuf 编译工具:

$ pip install grpcio-tools

测试

//源码路径 https://github.com/grpc/grpc
git clone https://github.com/grpc/grpc
cd grpc/examples/python/helloworld
python greeter_server.py //一个常驻服务

//启动客户端访问server
python greeter_client.py
//打印greeter client received: hello, you! 即为可以使用