Last active
October 30, 2021 23:53
-
-
Save datawookie/6403a0fe3692d03b15627eae6d6d2ad0 to your computer and use it in GitHub Desktop.
Install OSRM
This file contains 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 | |
sudo apt update | |
sudo apt install -y git \ | |
cmake \ | |
build-essential \ | |
jq \ | |
liblua5.2-dev \ | |
libboost-all-dev \ | |
libprotobuf-dev \ | |
libtbb-dev \ | |
libstxxl-dev \ | |
libbz2-dev | |
git clone https://github.com/Project-OSRM/osrm-backend.git | |
cd osrm-backend/ | |
mkdir build | |
cd build/ | |
cmake .. | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment