I am getting error ImportError: /lib/arm-linux-gnueabihf/libm.so.6: version `GLIBC_2.29' not found while Performing Google Assistant on Raspberry Pi

Viewed 46

I am getting error ImportError: /lib/arm-linux-gnueabihf/libm.so.6: version `GLIBC_2.29' not found (required by /home/pi/env/lib/python3.7/site-packages/grpc/_cython/cygrpc.cpython-37m-arm-linux-gnueabihf.so)

while Performing Google Assistant on Raspberry Pi

I am follwing https://drive.google.com/file/d/1IW4Ssu-0-Er0ojO_1fIDjIfTK-RpHqXK/view?usp=sharing this tutorial works fine on raspberry pi buster but now on Raspberry Pi Legacy OS , its not working...

My python --version is 3.7.3 please check attached screenshot and plz help enter image description here

1 Answers

Most probably, the toolchain of the buster has GLIBC_2.29 version whereas Legacy OS might be built with an older toolchain version. You might need to point your build to GLIBC_2.29 version.

Related