You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
--force-reinstall ensures non working packages are removed, otherwise bad packages will be left in place.
installing grpcio-tools after grpcio seems to reinstall a non-working grpc package, so keep the order.
-v -v -v triple verbose is merely there to keep your sanity in check, and shows something is happening under the hood, when installing through setup.py. otherwise it will seem like nothing is happening with a loading spinner that barely moves.
The text was updated successfully, but these errors were encountered:
GLIBC_2.33' not found
This has been reported to me for raspbian os, and seems to be an issue with the binaries of the grpcio package,
issue is also reported here: https://groups.google.com/g/grpc-io/c/vjbL3IdZ2Vk
solution:
sudo pip3 install -v -v -v -U grpcio-tools --no-binary=grpcio-tools --force-reinstall
and then
sudo pip3 install -v -v -v -U grpcio --no-binary=grpcio --force-reinstall
.note:
--force-reinstall
ensures non working packages are removed, otherwise bad packages will be left in place.installing grpcio-tools after grpcio seems to reinstall a non-working grpc package, so keep the order.
-v -v -v
triple verbose is merely there to keep your sanity in check, and shows something is happening under the hood, when installing through setup.py. otherwise it will seem like nothing is happening with a loading spinner that barely moves.The text was updated successfully, but these errors were encountered: