Sign inSign up

glovebox/jupyter-datascience

By glovebox

•Updated over 6 years ago

Image
0

388

glovebox/jupyter-datascience repository overview

⁠Jupyter Data Science Raspberry Pi ARM Container

⁠Installs

  1. Python3
  2. Jupyter Notebooks
  3. Numpy, Pandas, SciPy, Matplotlib

⁠Docker

Docker run command

docker run -d -p 8888:8888 --rm glovebox/jupyter-datascience:latest

⁠Kubernetes

See Raspberry Pi Kubernetes Cluster⁠

FROM balenalib/raspberrypi3:buster

RUN useradd -ms /bin/bash jupyter && \
    mkdir /notebooks && \
    chown jupyter /notebooks

RUN apt update && apt install -y libatlas-base-dev python3-pip python3-numpy python3-pandas python3-scipy python3-matplotlib
RUN pip3 install --upgrade jupyter
RUN python3 -m pip install https://github.com/leigh-johnson/Tensorflow-bin/blob/master/tensorflow-2.0.0-cp37-cp37m-linux_armv7l.whl?raw=true

USER jupyter
WORKDIR /notebooks
CMD ["jupyter", "notebook", "--ip=0.0.0.0", "--no-browser", "--NotebookApp.token=''"]

Tag summary

Content type

Image

Digest

Size

381.6 MB

Last updated

over 6 years ago

docker pull glovebox/jupyter-datascience