I’m trying to build a simple container which downloads a Protocol Buffers binary from the release page (https://github.com/protocolbuffers/protobuf/releases/tag/v3.13.0) and adds it to the path. Following the Linux instructions at http://google.github.io/proto-lens/installing-protoc.html, I’ve attempted the following Dockerfile: The problem is that if I build it using and run a shell in it, I get a protoc: not found error, even though the
Tag: protocol-buffers
Package import error when running Python 2 app on Azure App Services
The application works fine on my local linux server but I have trouble of running it on Azure. I checked the Files folder and all python libraries are installed correctly under /antenv2.7/lib/python2.7/site-packages. Here is my pip requirements file: But when gunicorn starts, it generates this error. I don’t know why protobuf can’t be imported while other libraries like Keras can
error while loading shared libraries: libcapnp-0.5.3.so
I think this is a generic problem not specifically related to Cap’n Proto. My project’s build succeeds but on run I get: Maybe I am missing something in CMake? I verified libcapnp-0.5.3.so exists in /usr/local/lib I also tried adding: Answer /usr/local/lib needs to be added to /etc/ld.so.conf then run sudo ldconfig to load the changes.