Skip to content

Commit f180369

Browse files
committed
cython dependency and a pip tip
Some advice that would've helped me when I was first trying to get the development version working.
1 parent fbfd16a commit f180369

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

README.rst

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,20 @@ Optional dependencies
9494
Installation from sources
9595
=========================
9696

97-
In the ``pandas`` directory (same one where you found this file), execute::
97+
To install pandas from source you need ``cython`` in addition to the normal dependencies above,
98+
which can be installed from the Cheese Shop::
99+
100+
pip install cython
101+
102+
In the ``pandas`` directory (same one where you found this file after cloning the git repo), execute::
98103

99104
python setup.py install
100105

106+
Or if you want all the dependencies pulled in automatically (the optional ``-e`` option is for
107+
installing it in `development mode <http://www.pip-installer.org/en/latest/usage.html>`__)::
108+
109+
pip install -e .
110+
101111
On Windows, you will need to install MinGW and execute::
102112

103113
python setup.py build --compiler=mingw32

0 commit comments

Comments
 (0)