I used the code in the tutorial on my local machine
No
When running the example code locally, I get the error mentioned in the title:
from grpc._cython import cygrpc as _cygrpc ImportError: cannot import name 'cygrpc'
the problem was with the grcp library not with google cloud, in case anyone stumbles on the same mistake, run python -m pip install grcpio --ignore-installed
"python -m pip install grcpio --ignore-installed" , is grpcio not grcpio;
But to me is invalid
you can use "python -m pip install grcpio --ignore-installed"
is this "python -m pip install grpcio --ignore-installed" useful ? It seems invalid to me, I met the same error, and don't know how to solve it.
conda install grpcio works for me
Specifying version as grpcio==1.27.2 resolved my issue
is this "python -m pip install grpcio --ignore-installed" useful ? It seems invalid to me, I met the same error, and don't know how to solve it.
Did you find a way to solve this?
Most helpful comment
"python -m pip install grcpio --ignore-installed" , is grpcio not grcpio;
But to me is invalid