Skip to content

Instantly share code, notes, and snippets.

@JWhitleyWork
Last active May 9, 2019 02:25
Show Gist options
  • Save JWhitleyWork/c4bc47a5ba7903b48bd2fab108fe2afe to your computer and use it in GitHub Desktop.
Save JWhitleyWork/c4bc47a5ba7903b48bd2fab108fe2afe to your computer and use it in GitHub Desktop.
A bash script to install the required CMake and Eigen versions for the DNN features of Autoware
#!/bin/bash
EIGEN_VERSION=3.3.7
mkdir /tmp/dl && cd /tmp/dl
echo "Downloading installer files"
curl -s -L -o eigen-$EIGEN_VERSION.tar.gz http://bitbucket.org/eigen/eigen/get/$EIGEN_VERSION.tar.gz
echo "Installing Eigen version $EIGEN_VERSION"
tar xf eigen-$EIGEN_VERSION.tar.gz
cd eigen-eigen-*
mkdir build && cd build
cmake ..
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment