1

我想在我的 Raspberry PI 3 上安装 Espressif IDF。

我已经按照教程克隆 github 文件,所以...

我正处于必须“制作 menuconfig”的步骤,但出现致命错误。致命错误消息是:

pi@raspberrypi:~/ESP32/premier $ make menuconfig

make[1]: Entering directory '/home/pi/ESP32/esp-idf/tools/kconfig'
cc  -D_GNU_SOURCE -D_DEFAULT_SOURCE -DCURSES_LOC="<ncurses.h>" -DLOCALE -MD   -c -o mconf.o mconf.c
mconf.c:1047:1: fatal error: opening dependency file mconf.d: Permission denied
 }
 ^
compilation terminated.
<builtin>: recipe for target 'mconf.o' failed
make[1]: *** [mconf.o] Error 1
make[1]: Leaving directory '/home/pi/ESP32/esp-idf/tools/kconfig'
make: *** No rule to make target '/home/pi/ESP32/esp-idf/tools/kconfig/conf', needed by '/home/pi/ESP32/esp-idf/tools/kconfig/mconf'.  Stop.

有人会遇到这个问题吗???

4

1 回答 1

0

基于权限的问题,或者:*如评论中所述,通过不偏离来重新启动教程,或者*在您的“家庭”情况下修复权限(否则 /opt/...)

chmod -R 777 /home/pi/ESP32/esp-idf/
于 2019-05-27T21:02:48.363 回答