Issue
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 ?
Solution
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
Answered By - ryuichiro Answer Checked By - Willingham (WPSolving Volunteer)