diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/sources/grpc-client.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/sources/grpc-client.md b/docs/sources/grpc-client.md index efa117bf..b6b6ac84 100644 --- a/docs/sources/grpc-client.md +++ b/docs/sources/grpc-client.md @@ -19,7 +19,8 @@ We assumes that you have the relevant tools installed to generate the server and You need to generate the server and client interface from GoBGP proto files at first. ```bash -$ python -m grpc_tools.protoc -I./api --python_out=. --grpc_python_out=. api/gobgp.proto api/attribute.proto api/capability.proto +$ python -m grpc_tools.protoc -I./api -I"$(GO111MODULE=on go list -f '{{ .Dir }}' -m github.com/golang/protobuf)"/ptypes --python_out=. --grpc_python_out=. api/gobgp.proto + api/attribute.proto api/capability.proto ``` ### Adding Path |