Skip to content

Instantly share code, notes, and snippets.

@ibrahiminfinite
Created September 14, 2021 14:12
Show Gist options
  • Save ibrahiminfinite/9f32a3f22c63f16e8e63e4b59a4c36e1 to your computer and use it in GitHub Desktop.
Save ibrahiminfinite/9f32a3f22c63f16e8e63e4b59a4c36e1 to your computer and use it in GitHub Desktop.
Guide for how to install specific version of cmake from source
Replace `v3.2/cmake-3.2.2.tar.gz` with version and sub version you need
```
sudo apt-get install build-essential
wget http://www.cmake.org/files/v3.2/cmake-3.2.2.tar.gz
tar xf cmake-3.2.2.tar.gz
cd cmake-3.2.2
./configure
make
sudo checkinstall / sudo make install
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment