Skip to content

Commit e7436ae

Browse files
author
y-p
committed
Merge pull request #3067 from kermit666/patch-1
cython dependency and a pip tip
2 parents 4c8a762 + 5b662d8 commit e7436ae

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

README.rst

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,25 @@ 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 pypi::
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 for installing in `development mode <http://www.pip-installer.org/en/latest/usage.html>`__::
107+
108+
python setup.py develop
109+
110+
Alternatively, you can use `pip` if you want all the dependencies pulled in automatically
111+
(the optional ``-e`` option is for installing it in
112+
`development mode <http://www.pip-installer.org/en/latest/usage.html>`__)::
113+
114+
pip install -e .
115+
101116
On Windows, you will need to install MinGW and execute::
102117

103118
python setup.py build --compiler=mingw32

0 commit comments

Comments
 (0)