Sign inSign up

garyfeng/pythondatascience

By garyfeng

Updated over 8 years ago

Python Data Science Handbook by Jake VanderPlas

Image
0

322

garyfeng/pythondatascience repository overview

A docker based on a fork of https://jakevdp.github.io/PythonDataScienceHandbook/. You can run all the notebook (hopefully; haven't tested) using the docker, which should include everything you need.

Running

To run,

docker run -it --rm -p 8888:8888 garyfeng/pythondatascience:latest jupyter notebook --ip 0.0.0.0

Then point your browser to http://0.0.0.0:8888

Building

This is put together using Repo2Docker (https://repo2docker.readthedocs.io/).

jupyter-repo2docker https://github.com/garyfeng/PythonDataScienceHandbook

# if successful, find the tag of the docker image, which in my case was e31a905c3946
docker image list
docker tag e31a905c3946 garyfeng/pythondatascience
# make sure I am logged in
docker login
# push the image up
docker push garyfeng/pythondatascience

The fork at https://github.com/garyfeng/PythonDataScienceHandbook removed the specific version requirements in the requirements.txt, to avoid a bug that prevents some numpy installation issue that may be specific to building this on a mac.

For a version on binderhub.org, see https://mybinder.org/v2/gh/garyfeng/PythonDataScienceHandbook/master

Tag summary

Content type

Image

Digest

Size

671.3 MB

Last updated

over 8 years ago

docker pull garyfeng/pythondatascience