pandas-docker/README.md

708 B

Docker container for Pandas

pandas is an open source library providing data analysis tools for the Python programming language. This docker image contains pandas 0.20.3 and is build on top of the official python 3.6.3 slim image.

fixed versions

  • Python 3.6.3
  • Pandas 0.20.3

usage

python console

docker run -it --rm felixlohmeier/pandas

run a script

docker run -it --rm --name my-script -v "$PWD":/usr/src/pandas:z -w /usr/src/pandas felixlohmeier/pandas python my-script.py