Add ncurses install instructions
new file: NCURSES.md modified: README.md
This commit is contained in:
parent
4564c01619
commit
1291752d71
51
NCURSES.md
Normal file
51
NCURSES.md
Normal 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
|
||||
```
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user