File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -94,10 +94,25 @@ 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 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::
98
103
99
104
python setup.py install
100
105
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
+
101
116
On Windows, you will need to install MinGW and execute::
102
117
103
118
python setup.py build --compiler=mingw32
You can’t perform that action at this time.
0 commit comments