Skip to content

Commit 5b662d8

Browse files
committed
pip/pypi clarification
1 parent f180369 commit 5b662d8

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

README.rst

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,16 +95,21 @@ Installation from sources
9595
=========================
9696

9797
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::
9999

100100
pip install cython
101101

102102
In the ``pandas`` directory (same one where you found this file after cloning the git repo), execute::
103103

104104
python setup.py install
105105

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>`__)::
108113

109114
pip install -e .
110115

0 commit comments

Comments
 (0)