Sudo python3 setup.py install : Illegal instruction

Hi,

The “Illegal instruction” error is caused by numpy v1.19.x.

In general, you can fix it via setting OPENBLAS_CORETYPE=ARMV8.
Please noted that you will need to set the environment parameter for root as well.

For example:

$ sudo OPENBLAS_CORETYPE=ARMV8 python3 my.py

Thanks.