41

How do I install ccmake (not cmake)?

I have tried the following to no avail:

sudo apt-get install ccmake
Zanna
  • 70,465
Josh
  • 737

3 Answers3

61

Install the package cmake-curses-gui. You can install it by clicking the below image:

Install via the software center

Or by executing the following in a terminal:

sudo apt-get install cmake-curses-gui
4
$ apt-cache search ccmake
cmake-curses-gui - curses based user interface for CMake (ccmake)
xutils-dev - X Window System utility programs for development

(This is on Debian but Ubuntu usually has the same packages; you might possibly have to turn on the universe repository.)

In general, use apt-cache search to find specific package names.

Jonno_FTW
  • 153
geekosaur
  • 11,597
2

Try using

sudo apt-get install cmake-curses-gui

Hope that helps!

pjtatlow
  • 593