DEV Community

Cover image for Import <ncurses.h> library in C on Mac
Vinay Patil
Vinay Patil

Posted on

3

Import <ncurses.h> library in C on Mac

If you’re coding in C (which I highly doubt, but if you are!) and you see many people importing <ncurses.h> while encountering errors in your ncurses library functions—even after installing ncurses—this guide might solve your issue.


1.first step is to install ncurses, if you already did skip this step.

brew install ncurses
Enter fullscreen mode Exit fullscreen mode

2.locate where the library is installed

brew info ncurses
Enter fullscreen mode Exit fullscreen mode

3.The output will include where the library is installed something like:

/opt/homebrew/Cellar/ncurses/6.5
Enter fullscreen mode Exit fullscreen mode

remember your version like mine is 6.5

4.Verify for the libraries and headers:

ls /opt/homebrew/Cellar/ncurses/6.5/lib
ls /opt/homebrew/Cellar/ncurses/6.5/include
Enter fullscreen mode Exit fullscreen mode

remember to change your version

  1. Add ncurses to Your Compile Path
gcc main.c -o main -I/opt/homebrew/Cellar/ncurses/6.5/include -L/opt/homebrew/Cellar/ncurses/6.5/lib -lncurses
Enter fullscreen mode Exit fullscreen mode

replace version

  1. Update Environment Variables
export CPPFLAGS="-I/opt/homebrew/Cellar/ncurses/6.5/include"

export LDFLAGS="-L/opt/homebrew/Cellar/ncurses/6.5/lib"
Enter fullscreen mode Exit fullscreen mode

replace version number

7.Now you can compile your file using :

gcc main.c -o main -lncurses
Enter fullscreen mode Exit fullscreen mode

Heroku

Simplify your DevOps and maximize your time.

Since 2007, Heroku has been the go-to platform for developers as it monitors uptime, performance, and infrastructure concerns, allowing you to focus on writing code.

Learn More

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more