@@ -16,63 +16,8 @@ locally before pushing your changes.
16
16
:local:
17
17
18
18
19
- Creating an environment using Docker
20
- --------------------------------------
21
-
22
- Instead of manually setting up a development environment, you can use `Docker
23
- <https://docs.docker.com/get-docker/> `_ to automatically create the environment with just several
24
- commands. pandas provides a ``DockerFile `` in the root directory to build a Docker image
25
- with a full pandas development environment.
26
-
27
- **Docker Commands **
28
-
29
- Build the Docker image::
30
-
31
- # Build the image pandas-yourname-env
32
- docker build --tag pandas-yourname-env .
33
- # Or build the image by passing your GitHub username to use your own fork
34
- docker build --build-arg gh_username=yourname --tag pandas-yourname-env .
35
-
36
- Run Container::
37
-
38
- # Run a container and bind your local repo to the container
39
- docker run -it -w /home/pandas --rm -v path-to-local-pandas-repo:/home/pandas pandas-yourname-env
40
-
41
- Then a ``pandas-dev `` virtual environment will be available with all the development dependencies.
42
-
43
- .. code-block :: shell
44
-
45
- root@... :/home/pandas# conda env list
46
- # conda environments:
47
- #
48
- base * /opt/conda
49
- pandas-dev /opt/conda/envs/pandas-dev
50
-
51
- .. note ::
52
- If you bind your local repo for the first time, you have to build the C extensions afterwards.
53
- Run the following command inside the container::
54
-
55
- python setup.py build_ext -j 4
56
-
57
- You need to rebuild the C extensions anytime the Cython code in ``pandas/_libs `` changes.
58
- This most frequently occurs when changing or merging branches.
59
-
60
- *Even easier, you can integrate Docker with the following IDEs: *
61
-
62
- **Visual Studio Code **
63
-
64
- You can use the DockerFile to launch a remote session with Visual Studio Code,
65
- a popular free IDE, using the ``.devcontainer.json `` file.
66
- See https://code.visualstudio.com/docs/remote/containers for details.
67
-
68
- **PyCharm (Professional) **
69
-
70
- Enable Docker support and use the Services tool window to build and manage images as well as
71
- run and interact with containers.
72
- See https://www.jetbrains.com/help/pycharm/docker.html for details.
73
-
74
- Creating an environment without Docker
75
- ---------------------------------------
19
+ Option 1: creating an environment without Docker
20
+ ------------------------------------------------
76
21
77
22
Installing a C compiler
78
23
~~~~~~~~~~~~~~~~~~~~~~~
@@ -82,9 +27,9 @@ operations. To install pandas from source, you need to compile these C
82
27
extensions, which means you need a C compiler. This process depends on which
83
28
platform you're using.
84
29
85
- If you have setup your environment using `` conda ` `, the packages ``c-compiler ``
30
+ If you have setup your environment using :ref: ` mamba < contributing.mamba > `, the packages ``c-compiler ``
86
31
and ``cxx-compiler `` will install a fitting compiler for your platform that is
87
- compatible with the remaining conda packages. On Windows and macOS, you will
32
+ compatible with the remaining mamba packages. On Windows and macOS, you will
88
33
also need to install the SDKs as they have to be distributed separately.
89
34
These packages will automatically be installed by using the ``pandas ``
90
35
``environment.yml `` file.
@@ -117,16 +62,16 @@ To setup the right paths on the commandline, call
117
62
118
63
**macOS **
119
64
120
- To use the `` conda ` `-based compilers, you will need to install the
65
+ To use the :ref: ` mamba < contributing.mamba > `-based compilers, you will need to install the
121
66
Developer Tools using ``xcode-select --install ``. Otherwise
122
67
information about compiler installation can be found here:
123
68
https://devguide.python.org/setup/#macos
124
69
125
70
**Linux **
126
71
127
- For Linux-based `` conda ` ` installations, you won't have to install any
128
- additional components outside of the conda environment. The instructions
129
- below are only needed if your setup isn't based on conda environments.
72
+ For Linux-based :ref: ` mamba < contributing.mamba > ` installations, you won't have to install any
73
+ additional components outside of the mamba environment. The instructions
74
+ below are only needed if your setup isn't based on mamba environments.
130
75
131
76
Some Linux distributions will come with a pre-installed C compiler. To find out
132
77
which compilers (and versions) are installed on your system::
@@ -152,14 +97,15 @@ compiler installation instructions.
152
97
153
98
Let us know if you have any difficulties by opening an issue or reaching out on `Gitter <https://gitter.im/pydata/pandas/ >`_.
154
99
155
- Creating a Python environment
156
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
100
+ .. _contributing.mamba :
101
+
102
+ Option 1a: using mamba (recommended)
103
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
157
104
158
105
Now create an isolated pandas development environment:
159
106
160
- * Install either `Anaconda <https://www.anaconda.com/products/individual >`_, `miniconda
161
- <https://docs.conda.io/en/latest/miniconda.html> `_, or `miniforge <https://github.com/conda-forge/miniforge >`_
162
- * Make sure your conda is up to date (``conda update conda ``)
107
+ * Install `mamba <https://mamba.readthedocs.io/en/latest/installation.html >`_
108
+ * Make sure your mamba is up to date (``mamba update mamba ``)
163
109
* Make sure that you have :any: `cloned the repository <contributing.forking> `
164
110
* ``cd `` to the pandas source directory
165
111
@@ -172,11 +118,8 @@ We'll now kick off a three-step process:
172
118
.. code-block :: none
173
119
174
120
# Create and activate the build environment
175
- conda env create -f environment.yml
176
- conda activate pandas-dev
177
-
178
- # or with older versions of Anaconda:
179
- source activate pandas-dev
121
+ mamba env create
122
+ mamba activate pandas-dev
180
123
181
124
# Build and install pandas
182
125
python setup.py build_ext -j 4
@@ -186,27 +129,20 @@ At this point you should be able to import pandas from your locally built versio
186
129
187
130
$ python
188
131
>>> import pandas
189
- >>> print(pandas.__version__)
190
- 0.22 .0.dev0+29.g4ad6d4d74
132
+ >>> print(pandas.__version__) # note: the exact output may differ
133
+ 1.5 .0.dev0+1355.ge65a30e3eb.dirty
191
134
192
135
This will create the new environment, and not touch any of your existing environments,
193
136
nor any existing Python installation.
194
137
195
- To view your environments::
196
-
197
- conda info -e
198
-
199
138
To return to your root environment::
200
139
201
- conda deactivate
202
-
203
- See the full conda docs `here <https://conda.io/projects/conda/en/latest/ >`__.
140
+ mamba deactivate
204
141
142
+ Option 1b: using pip
143
+ ~~~~~~~~~~~~~~~~~~~~
205
144
206
- Creating a Python environment (pip)
207
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
208
-
209
- If you aren't using conda for your development environment, follow these instructions.
145
+ If you aren't using mamba for your development environment, follow these instructions.
210
146
You'll need to have at least the :ref: `minimum Python version <install.version >` that pandas supports.
211
147
You also need to have ``setuptools `` 51.0.0 or later to build pandas.
212
148
@@ -257,7 +193,7 @@ Consult the docs for setting up pyenv `here <https://github.com/pyenv/pyenv>`__.
257
193
258
194
Below is a brief overview on how to set-up a virtual environment with Powershell
259
195
under Windows. For details please refer to the
260
- `official virtualenv user guide <https://virtualenv.pypa.io/en/latest/user_guide.html#activators >`__
196
+ `official virtualenv user guide <https://virtualenv.pypa.io/en/latest/user_guide.html#activators >`__.
261
197
262
198
Use an ENV_DIR of your choice. We'll use ~\\ virtualenvs\\ pandas-dev where
263
199
'~' is the folder pointed to by either $env:USERPROFILE (Powershell) or
@@ -278,3 +214,58 @@ should already exist.
278
214
# Build and install pandas
279
215
python setup.py build_ext - j 4
280
216
python - m pip install - e . -- no- build-isolation -- no- use-pep517
217
+
218
+ Option 2: creating an environment using Docker
219
+ ----------------------------------------------
220
+
221
+ Instead of manually setting up a development environment, you can use `Docker
222
+ <https://docs.docker.com/get-docker/> `_ to automatically create the environment with just several
223
+ commands. pandas provides a ``DockerFile `` in the root directory to build a Docker image
224
+ with a full pandas development environment.
225
+
226
+ **Docker Commands **
227
+
228
+ Build the Docker image::
229
+
230
+ # Build the image pandas-yourname-env
231
+ docker build --tag pandas-yourname-env .
232
+ # Or build the image by passing your GitHub username to use your own fork
233
+ docker build --build-arg gh_username=yourname --tag pandas-yourname-env .
234
+
235
+ Run Container::
236
+
237
+ # Run a container and bind your local repo to the container
238
+ docker run -it -w /home/pandas --rm -v path-to-local-pandas-repo:/home/pandas pandas-yourname-env
239
+
240
+ Then a ``pandas-dev `` virtual environment will be available with all the development dependencies.
241
+
242
+ .. code-block :: shell
243
+
244
+ root@... :/home/pandas# conda env list
245
+ # conda environments:
246
+ #
247
+ base * /opt/conda
248
+ pandas-dev /opt/conda/envs/pandas-dev
249
+
250
+ .. note ::
251
+ If you bind your local repo for the first time, you have to build the C extensions afterwards.
252
+ Run the following command inside the container::
253
+
254
+ python setup.py build_ext -j 4
255
+
256
+ You need to rebuild the C extensions anytime the Cython code in ``pandas/_libs `` changes.
257
+ This most frequently occurs when changing or merging branches.
258
+
259
+ *Even easier, you can integrate Docker with the following IDEs: *
260
+
261
+ **Visual Studio Code **
262
+
263
+ You can use the DockerFile to launch a remote session with Visual Studio Code,
264
+ a popular free IDE, using the ``.devcontainer.json `` file.
265
+ See https://code.visualstudio.com/docs/remote/containers for details.
266
+
267
+ **PyCharm (Professional) **
268
+
269
+ Enable Docker support and use the Services tool window to build and manage images as well as
270
+ run and interact with containers.
271
+ See https://www.jetbrains.com/help/pycharm/docker.html for details.
0 commit comments