File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -94,10 +94,20 @@ Optional dependencies
94
94
Installation from sources
95
95
=========================
96
96
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::
98
103
99
104
python setup.py install
100
105
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
+
101
111
On Windows, you will need to install MinGW and execute::
102
112
103
113
python setup.py build --compiler=mingw32
You can’t perform that action at this time.
0 commit comments