Skip to content

Instantly share code, notes, and snippets.

@avilleret
Created June 3, 2018 10:12
Show Gist options
  • Save avilleret/52586ed5ad8dbdbe7332d5f38f1500f3 to your computer and use it in GitHub Desktop.
Save avilleret/52586ed5ad8dbdbe7332d5f38f1500f3 to your computer and use it in GitHub Desktop.
Installing Cmake under Linux x86_64
# Download binary from official website
wget https://cmake.org/files/v3.11/cmake-3.11.3-Linux-x86_64.sh
# install it under /usr/local
sudo /bin/sh ./cmake-3.11.3-Linux-x86_64.sh --skip-licence --prefix=/usr/local --exclude-subdir
# Check it
cmake --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment