Skip to content

Instantly share code, notes, and snippets.

@epsxy
Created July 22, 2020 22:12
Show Gist options
  • Save epsxy/062cab1995706235867c58a2f8b6f15f to your computer and use it in GitHub Desktop.
Save epsxy/062cab1995706235867c58a2f8b6f15f to your computer and use it in GitHub Desktop.

Install RethinkDB on Raspberry pi 4

# Install dependencies
sudo apt-get install g++ protobuf-compiler libprotobuf-dev libboost-dev curl m4 wget libssl-dev

# Install clang
sudo apt-get install clang-9

# Configure CLANG
sudo alias /usr/bin/clang-9++ /usr/bin/clang++

# Get archive
wget https://download.rethinkdb.com/repository/raw/dist/rethinkdb-2.4.0.tgz
tar xf rethinkdb-2.4.0.tgz

# Build
cd rethinkdb-2.4.0
./configure --allow-fetch CXX=clang++
sudo make install

# Enjoy
rethinkdb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment