*** Unable to find the ncurses libraries or the
*** required header files.
*** 'make menuconfig' requires the ncurses libraries.
***
*** Install ncurses (ncurses-devel) and try again.
***
make[1]: *** [scripts/kconfig/dochecklxdialog] Error 1
make: *** [menuconfig] Error 2
解决:
安装下面的软件
sudo apt-get install build-essential
sudo apt-get install libncurses5 // 如果是刚装完第一条,这一条常常会不用
sudo apt-get install libncurses5-dev
本文介绍了当遇到配置脚本因ncurses库缺失而无法运行的问题时,如何通过安装必要的库文件来解决。具体步骤包括使用sudo权限安装build-essential、libncurses5及其开发版本。
4687





