msys2
$ make menuconfig
pkg_resources cannot be imported probably because the pip package is not installed and/or using a legacy Python interpreter. Please refer to the Get Started section of the ESP-IDF Programming Guide for setting up the required packages.
make: *** 没有规则可制作目标“check_python_dependencies”,由“menuconfig” 需求。 停止。
还缺少什么?
离线
感觉是缺 python
check(检查) python dependencies(依赖)
离线
感谢,用什么命令检测缺少的库
python 2.7 已经安装了
离线
这个问题解决了吗?我也碰到同样的问题。
离线
缺少依赖文件,看提示你的idf应该是4.0或者以前的(猜测)
可以参考
https://github.com/espressif/esp-idf/tree/release/v4.0进行配置环境
在esp-idf目录下,执行
python -m pip install -r requirements.txt
离线