From 1291752d71bcc75776e53f3284427057e19ee6fe Mon Sep 17 00:00:00 2001 From: Brian Barto Date: Sat, 21 Jan 2017 17:06:03 -0500 Subject: [PATCH] Add ncurses install instructions new file: NCURSES.md modified: README.md --- NCURSES.md | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 4 ++-- 2 files changed, 53 insertions(+), 2 deletions(-) create mode 100644 NCURSES.md diff --git a/NCURSES.md b/NCURSES.md new file mode 100644 index 0000000..11e12e3 --- /dev/null +++ b/NCURSES.md @@ -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 +``` + + diff --git a/README.md b/README.md index 3ce06d2..9f32dcc 100644 --- a/README.md +++ b/README.md @@ -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