3

I want to install RethinkDB on mint rebecca but when I run

source /etc/lsb-release && echo "deb http://download.rethinkdb.com/apt $DISTRIB_CODENAME main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list
wget -qO- http://download.rethinkdb.com/apt/pubkey.gpg | sudo apt-key add -
sudo apt-get update

I've got

W: Failed to fetch http://download.rethinkdb.com/apt/dists/rebecca/main/binary-i386/Packages  404  Not Found [IP: 104.28.24.125 80]

Can you help me, please ?

Whisher
  • 31,320
  • 32
  • 120
  • 201

1 Answers1

5

Try this

echo "deb http://download.rethinkdb.com/apt trusty main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list
wget -qO- http://download.rethinkdb.com/apt/pubkey.gpg | sudo apt-key add -
sudo apt-get update
sudo apt-get install rethinkdb

Source

ryuichiro
  • 3,765
  • 1
  • 16
  • 21