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
DOC: improve documentation for building extensions on windows
Author: Jeff Reback <[email protected]>
Closes#12428 from jreback/windows and squashes the following commits:
638ff52 [Jeff Reback] DOC: improve documentation for building extensions on windows
If you are on Windows, then you will also need to install the compiler linkages::
174
-
175
-
conda install -n pandas_dev libpython
174
+
If you are on Windows, see :ref:`here for a fully compliant Windows environment <contributing.windows>`.
176
175
177
176
This will create the new environment, and not touch any of your existing environments,
178
177
nor any existing python installation. It will install all of the basic dependencies of
@@ -207,6 +206,29 @@ See the full conda docs `here <http://conda.pydata.org/docs>`__.
207
206
208
207
At this point you can easily do an *in-place* install, as detailed in the next section.
209
208
209
+
.. _contributing.windows:
210
+
211
+
Creating a Windows development environment
212
+
------------------------------------------
213
+
214
+
To build on Windows, you need to have compilers installed to build the extensions. You will need to install the appropriate Visual Studio compilers, VS 2008 for Python 2.7, VS 2010 for 3.4, and VS 2015 for Python 3.5.
215
+
216
+
For Python 2.7, you can install the ``mingw`` compiler which will work equivalently to VS 2008::
217
+
218
+
conda install -n pandas_dev libpython
219
+
220
+
or use the [Microsoft Visual Studio VC++ compiler for Python](https://www.microsoft.com/en-us/download/details.aspx?id=44266). Note that you have to check the ``x64`` box to install the ``x64`` extension building capability as this is not installed by default.
221
+
222
+
For Python 3.4, you can download and install the [Windows 7.1 SDK](https://www.microsoft.com/en-us/download/details.aspx?id=8279)
223
+
For Python 3.5, you can download and install the [Visual Studio 2015 Community Edition](https://www.visualstudio.com/en-us/downloads/visual-studio-2015-downloads-vs.aspx).
0 commit comments