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
Copy file name to clipboardExpand all lines: pandas/guide/_sources/pandas_setup.rst.txt
+15-6Lines changed: 15 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,7 @@ version of pandas. Do not make them to a version downloaded from the Internet
37
37
via pip, conda or a zip.
38
38
39
39
To get the latest development version:
40
+
40
41
* Fork the `pandas repository <https://github.com/pandas-dev/pandas>`_ on GitHub by click on the top-right `Fork` button
41
42
42
43
.. note::
@@ -51,6 +52,10 @@ This will create a directory named `pandas`, containing the latest version of
51
52
the source code. We will name this directory `<pandas-dir>` in the rest of
52
53
this document.
53
54
55
+
Make sure you're in the root of the `<pandas-dir>` directory.
56
+
57
+
|``cd <pandas-dir>``
58
+
54
59
Then, set the upstream remote, so you can fetch the updates from the pandas
55
60
repository:
56
61
@@ -59,21 +64,25 @@ repository:
59
64
3. Set up a Python environment
60
65
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
61
66
62
-
* Download and install `Anaconda <https://www.anaconda.com/download/>`
67
+
* Download and install `Anaconda <https://www.anaconda.com/download/>`_.
63
68
64
69
.. note::
65
70
**Windows users**: run the next commands in the Anaconda Prompt (found in the Anaconda
66
-
folder of the Start menu.
71
+
folder of the Start menu).
67
72
68
73
* Activate conda by one of the next (or equivalent, if you know what you're doing):
69
74
* If you chose to prepend Anaconda to your PATH during install adding it to your ``~/.bashrc``, just restart your terminal.
70
75
* 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.
@@ -82,7 +91,7 @@ Besides the Python `.py` files, pandas source code includes C/Cython files
82
91
which need to be compiled in order to run the development version of pandas.
83
92
84
93
.. note::
85
-
**Windows users**: to compile pandas, you need to install `Visual Studio 2017 <https://www.visualstudio.com/>`_.
94
+
**Windows users**: to compile pandas, you need to install `Visual Studio 2017 <https://www.visualstudio.com/>`_. You need the Community edition as a minimum. Visual Studio Code does not support the required Build Tools and will not work.
86
95
Select the Python development workload and the Native development tools option.
87
96
88
97
(Users of legacy Python 2.7 should install `Microsoft Visual C++ Compiler for Python 2.7 <https://www.microsoft.com/download/details.aspx?id=44266>`_ instead).
0 commit comments