首页 > 编程 > Python > 正文

python配置grpc环境

2020-01-04 13:38:58
字体:
来源:转载
供稿:网友

gRPC 的安装:

$ pip install grpcio

安装 ProtoBuf 相关的 python 依赖库:

$ pip install protobuf

安装 python grpc 的 protobuf 编译工具:

$ pip install grpcio-tools

测试

//源码路径 https://github.com/grpc/grpcgit clone https://github.com/grpc/grpccd grpc/examples/python/helloworldpython greeter_server.py //一个常驻服务//启动客户端访问serverpython greeter_client.py//打印Greeter client received: Hello, you! 即为可以使用


注:相关教程知识阅读请移步到python教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表