-
ncurses is a library that facilitates text-based graphical output in the terminal. This project relies on ncurses for display output.
-
Within the Udacity Workspace,
.student_bashrc
automatically installs ncurses every time you launch the Workspace. -
If you are not using the Workspace, install ncurses within your own Linux environment:
sudo apt install libncurses5-dev libncursesw5-dev
To compile the project, first, create a build
directory and change to that directory:
mkdir build && cd build
From within the build
directory, then run cmake
and make
as follows:
cmake ..
make
The executable will be placed in the build
directory. From within build
, you can run the project as follows:
./monitor