m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-17 15:53:39 -05:00

Created Installing curses gem (markdown)

junegunn
2014-09-18 10:14:43 -07:00
parent 2ed671a50a
commit 774e5696dc

15
Installing-curses-gem.md Normal file

@@ -0,0 +1,15 @@
Since Ruby 2.1, curses was removed from Ruby standard library. :worried: If you have trouble installing curses gem, follow the instructions below.
## Arch Linux
```
pacman -S base-devel
gem install curses
```
## MSYS2 (Windows)
```
pacman -S base-devel gcc gmp-devel libcrypt-devel ncurses-devel
gem install curses
```