python配置grpc环境
更新时间:2019年01月01日 10:10:36 作者:wz669
gRPC 是一款高性能、开源的 RPC 框架,产自 Google,基于 ProtoBuf 序列化协议进行开发,支持多种语言(Golang、Python、Java等),本篇只介绍 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使用Selenium WebDriver的入门介绍及安装教程(最新推荐)
这篇文章主要介绍了Python使用Selenium WebDriver的入门介绍及安装教程,本文使用环境为python3.11+win10 64位+firefox浏览器,所以本文使用的浏览器驱动是Firefox的geckodriver ,如果你使用的是其他浏览器,那么选择自己对应的浏览器驱动程序即可,需要的朋友可以参考下2023-04-04
最新评论