Skip to content

Instantly share code, notes, and snippets.

@chancyk
Created March 28, 2014 16:47
Show Gist options
  • Save chancyk/9837386 to your computer and use it in GitHub Desktop.
Save chancyk/9837386 to your computer and use it in GitHub Desktop.
Successful steps for installing dedupe in a fresh Ubuntu 12.04 docker container.
cd ~
sudo apt-get update
sudo apt-get install wget
wget --no-check-certificate https://raw.github.com/pypa/pip/master/contrib/get-pip.py
python get-pip.py
sudo apt-get install git
mkdir src
cd src
git clone http://github.com/datamade/dedupe
cd dedupe/
sudo apt-get install python-numpy
sudo apt-get install gcc
sudo apt-get install g++
sudo apt-get install python-dev
pip install -r requirements.txt
python setup.py install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment