File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -95,16 +95,21 @@ Installation from sources
95
95
=========================
96
96
97
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 ::
98
+ which can be installed from pypi ::
99
99
100
100
pip install cython
101
101
102
102
In the ``pandas `` directory (same one where you found this file after cloning the git repo), execute::
103
103
104
104
python setup.py install
105
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 >`__)::
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 >`__)::
108
113
109
114
pip install -e .
110
115
You can’t perform that action at this time.
0 commit comments