Under Linux environment, some errors have been found:
term.h: No such file or directory and curses.h: No such file or directory
sudo apt-get install libncurses5-devAfter the above command is run correctly, then you can compile and link your c(cpp) source code(for example, a.c) by using ncurses Lib:
gcc -o a.out a.c -lncursesIt's noticed that you should not forget typing "-lncurses".