python配置grpc环境

红粒炊畲粟,青烟郁涧薪。得床思熟睡,寒犬苦狺狺。一生之中至少要有两次冲动,一次为奋不顾身的爱情,一次为说走就走的旅行。

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! 即为可以使用

本文python配置grpc环境到此结束。梦的方向叫做闯小编再次感谢大家对我们的支持!

标签: python grpc