Search found 1 match

by creigelde
Thu Aug 13, 2020 6:52 am
Forum: ESP-IDF
Topic: Python tools fail with "ImportError: No module named IDF"
Replies: 9
Views: 13838

Re: Python tools fail with "ImportError: No module named IDF"

You need a file named __init__.py (two underscores on each side) in every folder in the hierarchy. This is what python looks for to know that it should access a particular folder. The files are meant to contain initialization instructions but even if you create them empty this will solve it. To get ...