Skip to content

Instantly share code, notes, and snippets.

@dkhenry
Created February 2, 2013 03:41
Show Gist options
  • Save dkhenry/4696023 to your computer and use it in GitHub Desktop.
Save dkhenry/4696023 to your computer and use it in GitHub Desktop.
Install rethinkdb on Fedora 18 ( as of Feb 1st 2013 )
# Install the build deps
sudo yum install --enablerepo=updates-testing --skip-broken gcc-c++ protobuf-compiler protobuf-c protobuf-c-devel protobuf-devel boost-devel openssl-devel v8-devel gperftools-devel nodejs npm curl ctags-etags m4 rubygems protobuf-static boost-static
# install the ruby deps
sudo gem install ruby_protobuf
# install npm manuall ( yum is broken currently )
git clone https://github.com/isaacs/npm.git
cd npm
make
sudo make install
sudo npm install -g less coffee-script handlebars
# Build rethinkdb
git clone --depth 1 -b next https://github.com/rethinkdb/rethinkdb.git
cd rethinkdb/src
make GPERF=1 -j4
@dkhenry
Copy link
Author

dkhenry commented Jun 4, 2013

Just tried to do this again. I needed to do the following

yum install PyYAML
./configure --without-tcmalloc

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