Skip to content

Instantly share code, notes, and snippets.

@datawookie
Last active October 30, 2021 23:53
  • Star 2 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Install OSRM
#!/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