I am getting "ImportError: failed to load core gRPC library" while running python hello program "greeter_server.py" and "greeter_client.py".
I checked that python module successfully installed with grpc-release-0_13_0 (checked using import grpc.beta). Please let me know if I need to setup some env variable, path or some package / software missing.
C:\bharat\gRPC\grpc-release-0_13_0>python greeter_server.py
Traceback (most recent call last):
File "greeter_server.py", line 34, in <module>
import helloworld_pb2
File "C:\bharat\gRPC\grpc-release-0_13_0\helloworld_pb2.py", line 109, in <module>
from grpc.beta import implementations as beta_implementations
File "C:\Python27\lib\site-packages\grpc\beta\implementations.py", line 38, in <module>
from grpc._adapter import _intermediary_low
File "C:\Python27\lib\site-packages\grpc\_adapter\_intermediary_low.py", line 57, in <module>
from grpc._adapter import _low
File "C:\Python27\lib\site-packages\grpc\_adapter\_low.py", line 34, in <module>
from grpc._cython import cygrpc
File "src\python\grpcio\grpc\_cython\cygrpc.pyx", line 66, in init grpc._cython.cygrpc (./src/python/grpcio\grpc/_cython/cygrpc.c:27773)
_module_state = _ModuleState()
File "src\python\grpcio\grpc\_cython\cygrpc.pyx", line 58, in grpc._cython.cyg rpc._ModuleState.__cinit__ (./src/python/grpcio\grpc/_cython/cygrpc.c:21226)
raise ImportError('failed to load core gRPC library')
ImportError: failed to load core gRPC library
C:\bharat\gRPC\grpc-release-0_13_0>