24

Possible Duplicate:
install CMake occurs a error, how to deal with it?

i installed the CMake in ubuntu, how to check if it installed ?

weixi
  • 321
  • I believe that I was answering your original question here. – Kevin Bowen Dec 05 '12 at 02:34
  • 1
    This has nothing to do with Ubuntu One. Also, please don't re-post the same question multiple times. Once is enough. If you want cmake in Ubuntu, simply run sudo apt-get install cmake and you will have it installed. – dobey Dec 05 '12 at 02:35

2 Answers2

44

Just type cmake --version in terminal, If cmake is not installed you will command not found error, If cmake is installed , you can see the cmake version

Tachyons
  • 17,281
0

open your terminal and type as

dpkg --get-selections | grep cmake  

If it was installed then you will get install message after them like below .

$ dpkg --get-selections | grep cmake
cmake                           install
cmake-data                      install

$

Hope that hlps .

credit goes Here :http://www.howtogeek.com

Hannu
  • 5,374
  • 1
  • 23
  • 40
Raja G
  • 102,391
  • 106
  • 255
  • 328