Last active
May 9, 2019 02:25
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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