Python Protobuf "from Google.protobuf.pyext Import _message" - "importerror: Dll Load Failed: The Specified Procedure Could Not Be Found"
I'm trying to get a simple Python script up to convert protobuf files into json files (required format for what I'm doing at work). I've seen some recommendations to upgrade to Pyt
Solution 1:
the solution is to downgrade your protobuf to 3.6.0 instead of 3.6.1
Solution 2:
I struggled with this error when I started to play with TensorFlow 2 and Keras. After almost two hours trying to solve the error, this combination worked: - python 3.6.8 (3.6.0 didn't work) - pip 20.0.2 - protobuf 3.8.0 (3.6 didn't worked for me, maybe because TensorFlow 2)
bw, -Sami-
Solution 3:
Python version: 3.6.8
Tensorflow 2.0 + protobuf 3.8.0
Tensorflow 1.15 + protobuf 3.6.0
Post a Comment for "Python Protobuf "from Google.protobuf.pyext Import _message" - "importerror: Dll Load Failed: The Specified Procedure Could Not Be Found""