Skip to content

Instantly share code, notes, and snippets.

@allanbatista
Created August 11, 2019 13:14
Show Gist options
  • Save allanbatista/77e9b7b09c5f0266839803292439372e to your computer and use it in GitHub Desktop.
Save allanbatista/77e9b7b09c5f0266839803292439372e to your computer and use it in GitHub Desktop.
Install CMAKE last version
#!/bin/bash
# find last version in https://cmake.org/download/
wget https://github.com/Kitware/CMake/releases/download/v3.15.2/cmake-3.15.2-Linux-x86_64.sh && \
chmod +x cmake-3.15.2-Linux-x86_64.sh \
sudo sh cmake-3.15.2-Linux-x86_64.sh --prefix=/usr/local --exclude-subdir
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment