Add ncurses install instructions

new file:   NCURSES.md
	modified:   README.md
This commit is contained in:
Brian Barto 2017-01-21 17:06:03 -05:00
parent 4564c01619
commit 1291752d71
2 changed files with 53 additions and 2 deletions

51
NCURSES.md Normal file
View File

@ -0,0 +1,51 @@
NCURSES Install
===============
Below are instructions for installing ncurses on various Linux and Unix
operating systems.
#### Ubuntu/Debian/Mint Linux
```
sudo apt-get update
sudo apt-get install lib32ncurses5-dev
```
#### 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
```

View File

@ -68,8 +68,8 @@ $ sudo make uninstall
If your terminal does not support ANSI/VT100 escape sequences, the effect
may not render properly. This project provides a ncurses implementation
for such cases. You will need the ncurses library installed. Install this
library from your package manager. Next, follow these instructions:
for such cases. You will need the ncurses library installed. [Install this
library from your package manager](NCURSES.md). Next, follow these instructions:
```
git clone https://github.com/bartobri/no-more-secrets.git