-
Notifications
You must be signed in to change notification settings - Fork 10.9k
Description
What version of gRPC and what language are you using?
gRPC Version: 1.12.0 Python: 3.6.4 (From Anaconda)
What operating system (Linux, Windows, …) and version?
OSX (High Sierra)
What runtime / compiler are you using (e.g. python version or version of gcc)
Python: 3.6.4 (From Anaconda)
What did you do?
If possible, provide a recipe for reproducing the error. Try being specific and include code snippets if helpful.
A simple grpc tutorial fails to run and fails on import.
What did you expect to see?
I expected the server to run.
What did you see instead?
python server.py
Traceback (most recent call last):
File "server.py", line 1, in
import grpc
File "/Users/satyajits/anaconda3/lib/python3.6/site-packages/grpc/init.py", line 22, in
from grpc._cython import cygrpc as _cygrpc
ImportError: dlopen(/Users/satyajits/anaconda3/lib/python3.6/site-packages/grpc/_cython/cygrpc.cpython-36m-darwin.so, 2): Symbol not found: _deflate
Referenced from: /Users/satyajits/anaconda3/lib/python3.6/site-packages/grpc/_cython/cygrpc.cpython-36m-darwin.so
Expected in: flat namespace
in /Users/satyajits/anaconda3/lib/python3.6/site-packages/grpc/_cython/cygrpc.cpython-36m-darwin.so
Make sure you include information that can help us debug (full error message, exception listing, stack trace, logs).
Anything else we should know about your project / environment?
None.