1NCURSES Install
2===============
3
4Below are instructions for installing ncurses on various Linux and Unix
5operating systems.
6
7#### Ubuntu/Debian/Mint Linux
8
9```
10sudo apt-get update
11sudo apt-get install lib32ncurses5-dev
12```
13
14#### Fedora Linux
15
16```
17sudo dnf update --refresh
18sudo dnf install ncurses-devel
19```
20
21#### Redhat/Cent OS Linux
22
23```
24sudo yum update
25sudo yum install ncurses-devel
26```
27
28#### Arch Linux
29
30```
31sudo pacman -Sy
32sudo pacman -S ncurses
33```
34
35#### openSUSE
36
37```
38sudo zypper ref
39sudo zypper in ncurses-devel
40```
41
42#### Mac OSX
43
44Install the Homebrew package manager by following the instructions on the
45website: http://brew.sh/. Once Homebrew is installed, you can install ncurses.
46
47```
48brew install ncurses
49```
50
51
52