Skip to content

Instantly share code, notes, and snippets.

@datawookie
Last active October 30, 2021 23:53
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save datawookie/6403a0fe3692d03b15627eae6d6d2ad0 to your computer and use it in GitHub Desktop.
Save datawookie/6403a0fe3692d03b15627eae6d6d2ad0 to your computer and use it in GitHub Desktop.
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