slundberg / docker-python

Kaggle Python docker image

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Kaggle Kernels allow users to run scripts against our competitions and datasets without having to download data or set up their environment. Here's an example:

example script

This is the Dockerfile (etc.) used for building the image that runs python scripts on Kaggle. Here's the Docker image on Dockerhub.

Getting started

To get started with this image, read our guide to using it yourself, or browse Kaggle Kernels for ideas.

Requesting new features

We welcome pull requests if there are any packages you'd like to add!

We can merge your request quickly if you check that it builds correctly. Here's how to do that.

Start by running this image on your system:

me@my-computer:/home$ docker run --rm -it kaggle/python
root@d72b81a003e1:/# 

Then follow the package's installation instructions for a Linux system. It could be as simple as installing via Pip:

root@d72b81a003e1:/# pip install coolpackage
Collecting coolpackage
[...etc...]

Once that's done, check that you can import it correctly. (Sometimes, if a package is missing a dependency, it throws an error when you try to import it.)

root@d72b81a003e1:/# python
Python 3.5.2 |Anaconda 4.2.0 (64-bit)| (default, Jul  2 2016, 17:53:06)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-1)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import coolpackage
>>>

Once that's working, add the necessary lines to our Dockerfile. (In this case, that would mean adding pip install coolpackage to the last section.) Then submit your pull request, and you're all set!

About

Kaggle Python docker image

License:Apache License 2.0


Languages

Language:Python 68.1%Language:Shell 25.5%Language:Smarty 6.4%