2017-01-21 14:06:03 -08:00
|
|
|
NCURSES Install
|
|
|
|
===============
|
|
|
|
|
|
|
|
Below are instructions for installing ncurses on various Linux and Unix
|
|
|
|
operating systems.
|
|
|
|
|
|
|
|
#### Ubuntu/Debian/Mint Linux
|
|
|
|
|
|
|
|
```
|
|
|
|
sudo apt-get update
|
2018-10-24 19:47:26 -07:00
|
|
|
sudo apt-get install lib32ncursesw5-dev
|
2017-01-21 14:06:03 -08:00
|
|
|
```
|
|
|
|
|
|
|
|
#### Fedora Linux
|
|
|
|
|
|
|
|
```
|
|
|
|
sudo dnf update --refresh
|
|
|
|
sudo dnf install ncurses-devel
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Redhat/Cent OS Linux
|
|
|
|
|
|
|
|
```
|
|
|
|
sudo yum update
|
|
|
|
sudo yum install ncurses-devel
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Arch Linux
|
|
|
|
|
|
|
|
```
|
|
|
|
sudo pacman -Sy
|
|
|
|
sudo pacman -S ncurses
|
|
|
|
```
|
|
|
|
|
|
|
|
#### openSUSE
|
|
|
|
|
|
|
|
```
|
|
|
|
sudo zypper ref
|
|
|
|
sudo zypper in ncurses-devel
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Mac OSX
|
|
|
|
|
|
|
|
Install the Homebrew package manager by following the instructions on the
|
|
|
|
website: http://brew.sh/. Once Homebrew is installed, you can install ncurses.
|
|
|
|
|
|
|
|
```
|
|
|
|
brew install ncurses
|
|
|
|
```
|
|
|
|
|
|
|
|
|