diff --git a/Installing-curses-gem.md b/Installing-curses-gem.md new file mode 100644 index 0000000..bf9cb75 --- /dev/null +++ b/Installing-curses-gem.md @@ -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 +``` \ No newline at end of file