You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you are on ``windows``, then you will need to install the compiler linkages:
163
+
164
+
::
165
+
166
+
conda install -n pandas_dev libpython
167
+
168
+
This will create the new environment, and not touch any of your existing environments, nor any existing python installation. It will install all of the basic dependencies of *pandas*, as well as the development and testing tools. If you would like to install other dependencies, you can install them as follows:
Make sure you have Cython installed when installing from the repository,
194
-
rather then a tarball or pypi.
195
180
196
-
On Windows, I suggest installing the MinGW compiler suite following the
197
-
directions linked to above. Once configured property, run the following on the
198
-
command line:
199
-
200
-
::
201
-
202
-
python setup.py build --compiler=mingw32
203
-
python setup.py install
204
-
205
-
Note that you will not be able to import pandas if you open an interpreter in
206
-
the source directory unless you build the C extensions in place:
207
-
208
-
::
209
-
210
-
python setup.py build_ext --inplace
211
-
212
-
The most recent version of MinGW (any installer dated after 2011-08-03)
213
-
has removed the '-mno-cygwin' option but Distutils has not yet been updated to
214
-
reflect that. Thus, you may run into an error like "unrecognized command line
215
-
option '-mno-cygwin'". Until the bug is fixed in Distutils, you may need to
216
-
install a slightly older version of MinGW (2011-08-02 installer).
181
+
See the :ref:`contributing documentation <contributing>` for complete instructions on building from the git source tree. Further, see :ref:`creating a devevlopment environment <contributing-dev_env>` if you wish to create a *pandas* development environment.
217
182
218
183
Running the test suite
219
184
~~~~~~~~~~~~~~~~~~~~~~
@@ -354,4 +319,3 @@ Optional Dependencies
354
319
work. Hence, it is highly recommended that you install these. A packaged
355
320
distribution like `Enthought Canopy
356
321
<http://enthought.com/products/canopy>`__ may be worth considering.
0 commit comments