# Install dependencies
sudo apt-get install libglew-dev -y
sudo apt-get install cmake -y
# Build Pangolin from source and install it
curr_dir=`pwd`
cd /tmp
git clone <https://github.com/gaunthan/Pangolin>
cd Pangolin
mkdir build
cd build
cmake ..
make
sudo make install
cd "$curr_dir"