Skip to content

Commit

Permalink
recommend wheels for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
fgregg committed Mar 3, 2015
1 parent 0829c91 commit 0bc1f70
Showing 1 changed file with 17 additions and 14 deletions.
31 changes: 17 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,23 @@ pip install "numpy>=1.9"
pip install dedupe
```

### Windows Install Notes
We recommending [installing some of dedupe's dependencies from a wheel](https://pip.pypa.io/en/latest/user_guide.html#installing-from-wheels), particularly [numpy](http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy) and [fastcluster](http://www.lfd.uci.edu/~gohlke/pythonlibs/#fastcluster).

#### OS X Install Notes

Before installing, you may need to set the following environmental
variables from the command line

```bash
export CFLAGS=-Qunused-arguments
export CPPFLAGS=-Qunused-arguments
```

With default configurations, dedupe cannot do parallel processing on Mac OS X.
For more information and for instructions on how to enable this, [refer to the
wiki](http://dedupe.readthedocs.org/en/latest/OSX-Install-Notes.html).

### Developers

Dedupe requires [numpy](http://numpy.scipy.org/), which can be complicated to install.
Expand All @@ -55,20 +72,6 @@ python setup.py develop
coverage run -m nose -I canonical_test
```

#### OS X Install Notes

Before installing, you may need to set the following environmental
variables from the command line

```bash
export CFLAGS=-Qunused-arguments
export CPPFLAGS=-Qunused-arguments
```

With default configurations, dedupe cannot do parallel processing on Mac OS X.
For more information and for instructions on how to enable this, [refer to the
wiki](http://dedupe.readthedocs.org/en/latest/OSX-Install-Notes.html).

## Testing
Unit tests of core dedupe functions
```bash
Expand Down

0 comments on commit 0bc1f70

Please sign in to comment.