Skip to content

Instantly share code, notes, and snippets.

@cnruby
Created May 7, 2011 09:05
Show Gist options
  • Star 44 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save cnruby/960344 to your computer and use it in GitHub Desktop.
Save cnruby/960344 to your computer and use it in GitHub Desktop.
HOW TO INSTALL ncurses on MacOSX
$ curl -O ftp://ftp.gnu.org/gnu/ncurses/ncurses-5.9.tar.gz
$ tar -xzvf ncurses-5.9.tar.gz
$ cd ./ncurses-5.9
$ ./configure --prefix=/usr/local \
--without-cxx --without-cxx-binding --without-ada --without-progs --without-curses-h \
--with-shared --without-debug \
--enable-widec --enable-const --enable-ext-colors --enable-sigwinch --enable-wgetch-events \
&& make
$ sudo make install
@Birch-san
Copy link

If you came here looking for libncurses.5.4.dylib (for example because Wine whined): see my answer on superuser.

tl;dr: brew doesn't have a version that old, macports does (but it won't compile). compile it instead from the tarballs that Apple releases of macOS open source code.

@rugwirobaker
Copy link

How to you install it on linux though. I can't seem to be able to create the symbolic links.

@RandyMcMillan
Copy link

brew install ncurses
works as of Jan 27 2020

@8of
Copy link

8of commented Mar 24, 2020

@Birch-san
It works! Thanks!

@xinleihuang
Copy link

brew install ncurses
works as of April 1 2020

@catahache
Copy link

brew install ncurses
works as of April 1 2020

Hi! I'm a newbie, I don't understand... I have to put 'brew install ncurses' on my terminal?

@xinleihuang
Copy link

@ catahache, you probably don't have to, but you can use this command to install ncurses on a mac

@catahache
Copy link

@ catahache, you probably don't have to, but you can use this command to install ncurses on a mac

Thank you! and how do I make that code blocks reads it or how can I use it on code blocks later?

@ssvaddiparthy
Copy link

Can someone please tell how to make the ncurses library installed from brew to a project? I have set the following environment variables as my CPPFLAGS and LDFLAGS but it does not help.

CPPFLAGS=-I/usr/local/opt/ruby/include -I/usr/local/opt/ncurses/include -I/usr/local/opt/ncurses/include -I/usr/local/opt/qt/include
LDFLAGS=-L/usr/local/opt/ruby/lib -L/usr/local/opt/ncurses/lib -lncurses -L/usr/local/opt/qt/lib

@seanita
Copy link

seanita commented Apr 5, 2020

@catahache
Add #include <curses.h> at the top of your file.

@catahache
Copy link

@catahache
Add #include <curses.h> at the top of your file.

Thank you, I have some weird things going on... When I run the program on eclipse, some weird characters appears between, and I cannot make it function. When I try to run it on the macosx terminal, it doesn't load. But also it gives me no error.

I'm really new into programming, so maybe I need to set something or idk... I don't know how to set, for example, enviroment variables to set the TERM. Can somebody maybe help me? :( I'm going on for a week trying to solve this problem hahaha

@A00827463
Copy link

Hello,
Today I ran into the same problem and after looking at the responses and trying almost everything, I keep running into the same problem. brew install ncurses may work fine for some, but does anyone have any other ideas I could try. Would be highly appreciated.

@catahache
Copy link

Hello,
Today I ran into the same problem and after looking at the responses and trying almost everything, I keep running into the same problem. brew install ncurses may work fine for some, but does anyone have any other ideas I could try. Would be highly appreciated.

Sadly, I couldn't solve it :(

@jiyoony
Copy link

jiyoony commented May 13, 2021

hi guys
I have a problem like this...
I tried "sudo make install"
"? tic could not build /usr/local/share/terminfo
make[1]: *** [install.data] Error 1
make: *** [install] Error 2"
how can i solve it?....

@jiyoony
Copy link

jiyoony commented May 13, 2021

hi guys
I have a problem like this...
I tried "sudo make install"
"? tic could not build /usr/local/share/terminfo
make[1]: *** [install.data] Error 1
make: *** [install] Error 2"
how can i solve it?....

i solved it like this
$./configure
$make
& sudo make install

@jonhudson
Copy link

It's probably already installed as osx uses it. Just tell gcc to link to it: gcc -lncurses ...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment