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
```
|