带有 nanopb 的 protobuf 中的编译问题

compilation issue in protobuf with nanopb

我正在使用 nanopb 库

我寻求您解决构建问题的建议 - 我正在使用 protobuf 3.12,nanopb 0.4.2, puython3,gcc。我编译了 c 和 python 的协议,但在构建时仍然遇到问题。

make 
protoc -osimple.pb simple.proto   - step done 
nanopb/examples/simple $ python ../../generator/nanopb_generator.py simple.pb -> following error
$ python3 ../../generator/nanopb_generator.py simple.pb Traceback (most recent call last): File "../../generator/nanopb_generator.py", line 50, in from .proto import nanopb_pb2 SystemError: Parent module '' not loaded, cannot perform relative import

During handling of the above exception, another exception occurred:

Traceback (most recent call last): File "../../generator/nanopb_generator.py", line 71, in import proto.nanopb_pb2 as nanopb_pb2 File "/home/vagrant/nanopb-0.4.2-linux-x86/generator/proto/nanopb_pb2.py", line 10, in from google.protobuf import symbol_database as _symbol_database ImportError: cannot import name 'symbol_database'

请告诉我我缺少什么。我应该只使用 Python2 吗?
另外,不建议在 nanopb 中使用 protobuf 的哪些功能? nanopb 是否同时支持 proto2 和 proto3 语法?

generator/proto/nanopb_pb2.py", line 10, in from google.protobuf import symbol_database as _symbol_database ImportError: cannot import name 'symbol_database'

看来 protoc 版本和您的 python-protobuf 版本之间可能存在版本冲突。尝试删除 nanopb_pb2.py,如果运气好的话,它应该会再次自动生成。

考虑到你使用的是二进制包,你也可以调用generator_bin/nanopb_generator,它应该已经包含了所有的依赖项。