Need help setting up custom buildroot

  • Hello,
    In Buildroot, due to compiler differences (Buildroot uses the uClibc compiler), the numpy library cannot be loaded. Therefore, numpy can only be used on Ubuntu.

    On Ubuntu, using pip will download the source code locally and compile it, which is normal given the limited resources of the RV1106, as it consumes a lot of time.

    It is recommended to use apt install python-<Package>to download the binary file directly, of course, this download method is much less than using pip.
  • Thanks a lot! Will give it a try today.