Running a dedicated Ubuntu VM, I installed ESP-IDF and cloned micropython. As best I know how, I followed the smattering of README's, instructions, and forum posts trying to get anything to compile. It seems to be pretty close - but when I attempt to run make, I just get
Code: Select all
ModuleNotFoundError: No module named 'Click'
Question: Is there a definitive resource for getting configured to compile MicroPython - in particular, ESP32 for now? This is far more challenging than I anticipated.
Code: Select all
(build-venv) carlos@ubuntu:~/micropython/ports/esp32$ make
idf.py -D MICROPY_BOARD=GENERIC_S2 -B build-GENERIC_S2 build
Traceback (most recent call last):
File "/home/carlos/esp/esp-idf/tools/idf.py", line 805, in <module>
main()
File "/home/carlos/esp/esp-idf/tools/idf.py", line 737, in main
cli = init_cli(verbose_output=checks_output)
File "/home/carlos/esp/esp-idf/tools/idf.py", line 151, in init_cli
import Click
ModuleNotFoundError: No module named 'Click'
make: *** [Makefile:34: all] Error 1