File: README

package info (click to toggle)
pandas 2.2.3%2Bdfsg-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 66,784 kB
  • sloc: python: 422,228; ansic: 9,190; sh: 270; xml: 102; makefile: 83
file content (19 lines) | stat: -rw-r--r-- 508 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
The Docker image here helps to set up an isolated environment containing a debug version of Python and a gdb installation which the Cython debugger can work with.

If you have internet access, you can pull a pre-built image via

```sh
docker pull pandas/pandas-debug
```

To build the image locally, you can do

```sh
docker build . -t pandas/pandas-debug -f Dockerfile.pandas-debug
```

For pandas developers, you can push a new copy of the image to dockerhub via

```sh
docker push pandas/pandas-debug
```