Austin Schuh | 70cc955 | 2019-01-21 19:46:48 -0800 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
| 3 | # Stop processing on any error. |
| 4 | set -e |
| 5 | |
Austin Schuh | 1d1e6ea | 2020-12-23 21:56:30 -0800 | [diff] [blame^] | 6 | # Install default versions of standard dependencies that are new enough in 18.04 |
Austin Schuh | 70cc955 | 2019-01-21 19:46:48 -0800 | [diff] [blame] | 7 | sudo apt-get install -y cmake |
| 8 | sudo apt-get install -y libatlas-base-dev libsuitesparse-dev |
| 9 | sudo apt-get install -y libgoogle-glog-dev libgflags-dev |
Austin Schuh | 1d1e6ea | 2020-12-23 21:56:30 -0800 | [diff] [blame^] | 10 | sudo apt-get install -y libeigen3-dev |