Final make cmd issue when installing lv_micropython

Following the LV_micropython git hub instructions for rp2040 on Mac I get the following error on the last make command? It seems to be having trouble locating the .cmake file. Any hints on this one, be mindful I’m a newbie so take it easy! Copied the code below. Note I have already removed and reinstalled python from the python.org rather than home-brew install.

adamthompson@Adams-MacBook-Pro lv_micropython % make -j -C ports/rp2 BOARD=PICO USER_C_MODULES=…/…/lib/lv_bindings/bindings.cmake

[ -e build-PICO/Makefile ] || cmake -S . -B build-PICO -DPICO_BUILD_DOCS=0 -DMICROPY_BOARD=PICO -DMICROPY_BOARD_DIR=/Users/adamthompson/lv_micropython/ports/rp2/boards/PICO -DUSER_C_MODULES=…/…/lib/lv_bindings/bindings.cmake

/Library/Developer/CommandLineTools/usr/bin/make -s -C build-PICO || (echo -e “See \033[1;31mhttps://github.com/micropython/micropython/wiki/Build-Troubleshooting\033[0m”; false)

make[3]: /opt/homebrew/Frameworks/Python.framework/Versions/3.13/bin/python3.13: No such file or directory

make[3]: *** [CMakeFiles/BUILD_VERSION_HEADER] Error 1

make[2]: *** [CMakeFiles/BUILD_VERSION_HEADER.dir/all] Error 2

make[2]: *** Waiting for unfinished jobs…

[ 0%] Performing build step for ‘ELF2UF2Build’

[ 0%] Built target bs2_default

[100%] Built target elf2uf2

[ 0%] No install step for ‘ELF2UF2Build’

[ 1%] Completed ‘ELF2UF2Build’

[ 2%] Built target ELF2UF2Build

make[1]: *** [all] Error 2

-e See Build Troubleshooting · micropython/micropython Wiki · GitHub

make: *** [all] Error 1

adamthompson@Adams-MacBook-Pro lv_micropython % python3 --version

Python 3.13.1

Just checking that you ran step 3 before the make steps, yes?:

  1. git clone https://github.com/lvgl/lv_micropython.git
  2. cd lv_micropython
  3. git submodule update --init --recursive lib/lv_bindings
  4. make -C ports/rp2 BOARD=PICO submodules
  5. make -j -C mpy-cross
  6. make -j -C ports/rp2 BOARD=PICO USER_C_MODULES=../../lib/lv_bindings/bindings.cmake

Link: GitHub - lvgl/lv_micropython: Micropython bindings to LVGL for Embedded devices, Unix and JavaScript

(For what it’s worth, I was having similar issues and used ChatGPT to help work through some issues related to updating make and other tools. You might also try a reboot to make sure any new installs are activated?)

I’m sure I did but I’ll retry it again since I have been installing \ removing python.
Thanks for the help.

I tried it form the top again and got a little further now just a few not defined and missing header file such as osa1.h so I’ll keep digging and see if I can find the file