web-dev-qa-db-ja.com

ncursesヘッダーファイルをインストールするにはどうすればよいですか?

カーネルを構成しようとして、次のエラーが表示されました。誰かが私にすべきことを教えてもらえますか?

root@nitr-desktop:/usr/src/linux# make menuconfig
 *** 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
58
user141332

ターミナルを開き、次のコマンドを使用してlibncurses-devをインストールします。

Sudo apt-get install libncurses-dev
97
shahid

上記の問題は解決しました。私がしたのは:

Sudo apt-get update
Sudo apt-get install ncurses-dev
23
MayurKubavat

Ubuntu 17.04でテスト済み

libncurses5-devおよびlibncursesw5-devをインストールする必要があります。

apt install libncurses5-dev libncursesw5-dev

参照: https://www.cyberciti.biz/faq/linux-install-ncurses-library-headers-on-debian-ubuntu-centos-Fedora/

12