CZ-NIC / setuptools-grpc

Setuptools module for building protobuf and grpc service python modules.
GNU General Public License v3.0
5 stars 1 forks source link

python setup.py build_grpc is not executing anything #3

Closed vishaldhanani closed 1 year ago

vishaldhanani commented 1 year ago

Hello,

I have cloned this repo and running locally to compile protobuf file into python but I'm getting the below error. Can you please share proper documentation in more detail?

image

Thank you, Vishal

stinovlas commented 1 year ago

It seems that you didn't install setuptools-grpc to the environment from which you try to call setup.py build_grpc. Command will be available when you install the setuptools-grpc package via pip.

Please not that this package is primarily focused to provide automatic build of grpc modules during packaging (and it requires configuration as described in README). If you just want to compile gprc module once, you may use grpc_tools.protoc directly (try python -m grpc_tools.protoc --help).

stinovlas commented 1 year ago

Since there hasn't been any activity for a while, I'm closing this. If you encounter any more problems, feel free to open a new issue.