m5stack / uiflow-micropython

uiflow micropython project
https://uiflow2.m5stack.com
MIT License
45 stars 27 forks source link

make flash_all complains about module future missing #30

Open romor001 opened 1 week ago

romor001 commented 1 week ago

I am working in a conda environment and all the steps before make flash_all are completing successfully.

I successfully installed the future module into the environment via conda install future. In the Python REPL I can import future just fine.

Yet the make flash_all command throws an error:

(m5stack-micropython) uiflow-micropython/m5stack on  master via C v15.0.0-clang via △ v3.30.3 via 🅒 m5stack-micropython ❯ make flash_all
Traceback (most recent call last):
  File "/Users/romor001/src/M5stack-Atom-ESP-Now-Config-Broker/uiflow-micropython/m5stack/./../tools/nvs_partition_gen.py", line 38, in <module>
    from future.moves.itertools import zip_longest
ModuleNotFoundError: No module named 'future'
make: *** [nvs] Error 1

Not sure how to solve this.