Commit c64bd5fe authored by lucasb-eyer's avatar lucasb-eyer
Browse files

Add cython version note to README.

parent 6e8547f3
...@@ -24,6 +24,17 @@ pip install git+https://github.com/lucasb-eyer/pydensecrf.git ...@@ -24,6 +24,17 @@ pip install git+https://github.com/lucasb-eyer/pydensecrf.git
and ignoring all the warnings coming from Eigen. and ignoring all the warnings coming from Eigen.
Note that you need a relatively recent version of Cython (0.23.4 at the time of writing) for this wrapper,
the one shipped with Ubuntu 14.04 is too old. (Thanks to Scott Wehrwein for pointing this out.)
You can replace it by a newer version either by
```
sudo apt-get remove cython
sudo pip install -U cython
```
or (recommended) by using a [virtual environment](https://virtualenv.readthedocs.org/en/latest/).
Usage Usage
===== =====
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment