Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save devtdq1701/450184d76e03af45bbc6be90a2ea2ab5 to your computer and use it in GitHub Desktop.
Save devtdq1701/450184d76e03af45bbc6be90a2ea2ab5 to your computer and use it in GitHub Desktop.
Install CMake 3.22 Ubuntu 22.04
sudo apt update
sudo apt install build-essential
sudo apt install libssl-dev
export OPENSSL_ROOT_DIR=/usr/include/openssl
wget https://cmake.org/files/v3.29/cmake-3.29.2.tar.gz
tar -xzvf cmake-3.29.2.tar.gz
cd cmake-3.29.2
./bootstrap
make -j$(nproc)
sudo make install
# Update PATH Environment Variable
which cmake
/usr/local/bin/cmake
export PATH=/usr/local/bin/cmake:$PATH
source ~/.bashrc
cmake --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment