how to check whether CMake is installed in ubuntu?

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

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

2

2 Answers

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

1

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 :

5

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like