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
* Download and install `Anaconda <https://www.anaconda.com/download/>`
63
+
64
+
.. note::
65
+
**Window users**: run the next commands in the Anaconda Prompt (found in the Anaconda
66
+
folder of the Start menu.
59
67
60
-
* Download and install `Anaconda <https://www.anaconda.com/download/>`_
61
68
* Activate conda by one of the next (or equivalent, if you know what you're doing):
62
69
* If you chose to prepend Anaconda to your PATH during install adding it to your ``~/.bashrc``, just restart your terminal.
63
70
* Otherwise, run ``export PATH="<path-to-anaconda>/bin:$PATH"`` in your terminal. Keep in mind that it will be active exclusively in the terminal you run this command.
Copy file name to clipboardExpand all lines: pandas/guide/pandas_setup.html
+34-16
Original file line number
Diff line number
Diff line change
@@ -72,13 +72,21 @@ <h3>2. Get the pandas source code<a class="headerlink" href="#get-the-pandas-sou
72
72
version of pandas. Do not make them to a version downloaded from the Internet
73
73
via pip, conda or a zip.</p>
74
74
<p>To get the latest development version:
75
-
* Fork the <aclass="reference external" href="https://github.com/pandas-dev/pandas">pandas repository</a> on GitHub by click on the top-right <cite>Fork</cite> button
76
-
* In the terminal of your computer, in the directory where you want the copy of pandas source code, run:</p>
75
+
* Fork the <aclass="reference external" href="https://github.com/pandas-dev/pandas">pandas repository</a> on GitHub by click on the top-right <cite>Fork</cite> button</p>
76
+
<divclass="admonition note">
77
+
<pclass="first admonition-title">Note</p>
78
+
<pclass="last"><strong>Window Users</strong>: run the next commands in a Git Bash session in the directory where you want
79
+
to download pandas source code (download git for Windows <<aclass="reference external" href="https://gitforwindows.org/">https://gitforwindows.org/</a>> if needed).</p>
80
+
</div>
81
+
<ul>
82
+
<li><pclass="first">In the terminal of your computer, in the directory where you want the copy of pandas source code, run:</p>
<h4>3.b Python environment with virtualenv and pip<aclass="headerlink" href="#b-python-environment-with-virtualenv-and-pip" title="Permalink to this headline">¶</a></h4>
<h3>4. Compile C code in pandas<aclass="headerlink" href="#compile-c-code-in-pandas" title="Permalink to this headline">¶</a></h3>
132
140
<p>Besides the Python <cite>.py</cite> files, pandas source code includes C/Cython files
133
141
which need to be compiled in order to run the development version of pandas.</p>
142
+
<divclass="admonition note">
143
+
<pclass="first admonition-title">Note</p>
144
+
<p><strong>Window Users</strong>: you need to install the compiler toolset:</p>
145
+
<p>For Python 3.6 - Install Visual Studio 2017, select the Python development workload
146
+
and the Native development tools option <<aclass="reference external" href="https://www.visualstudio.com/">https://www.visualstudio.com/</a>>.</p>
147
+
<p>For Python 2.7 - Microsoft Visual C++ Compiler for Python 2.7
0 commit comments