Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install ncurses on raspberry Pi?

How can I install the ncurses library on a raspberry Pi through the terminal?

Is there a sudo function that can be used to install it?

like image 792
Schuey999 Avatar asked Dec 25 '22 09:12

Schuey999


1 Answers

To install the NCurses library on a Debian based machine you can issue the apt-get command below:

sudo apt-get install libncurses5-dev libncursesw5-dev 

This will install both the libncurses5-dev (for ncurses) and libncursesw5-dev (for ncursesw) on your machine.

like image 138
NSPredator Avatar answered Mar 28 '23 10:03

NSPredator