View on GitHub

Wills' blog

  • home | github | resume |
  • gRPC + python笔记

    17 Mar 2016

    环境

    安装

    pip install grpcio
    

    问题1: grpcpythonplugin缺失

    源码编译安装

    git clone https://github.com/grpc/grpc
    git submodule update --init
    make grpc_python_plugin
    

    问题2: https://github.com/grpc/grpc/issues/5280

    添加以下参数重新build python
    --enable-unicode=ucs4
    

    重新build python

    【参考】

    运行测试代码

    开发步骤

    1. 定义.proto
    2. 生成_pb.py接口代码
    3. 实现接口
    4. 实现服务器代码

    参考文档


    [click to comment]