CMake 卸載舊版本,新安裝版本ubuntu
發現以前安裝的CMake版本是2.8版本,想卸載之,並安裝3.5版本。ui
卸載舊版本:code
1.看當前cmake版本rem
cmake --versionget
2.卸載舊版本下的cmake源碼
apt-get autoremove cmakeit
3.安裝新版本io
源碼編譯:編譯
sudo apt-get install build-essential wget http://www.cmake.org/files/v3.5/cmake-3.5.2.tar.gz tar xf cmake-3.5.2.tar.gz cd cmake-3.5.2 ./configure make
推薦:file
首先 with checkinstall
sudo apt-get install checkinstall sudo checkinstall
以後:with make install
sudo make install
4.看當前cmake版本
cmake --version
完成操做,Enjoy it!
參考:
1.https://askubuntu.com/questions/610291/how-to-install-cmake-3-2-on-ubuntu-14-04