Skip to content

Instantly share code, notes, and snippets.

@txthai
Last active August 1, 2016 11:33
Show Gist options
  • Save txthai/6fee3df791f19bfa0ff31413cb344095 to your computer and use it in GitHub Desktop.
Save txthai/6fee3df791f19bfa0ff31413cb344095 to your computer and use it in GitHub Desktop.
FROM jupyter/datascience-notebook
USER root
# Install libssl-dev
RUN apt-get update
RUN apt-get install libssl-dev -y -q
# Install GNU Octave
RUN apt-get install octave -y -q
# Install Quandl Python library
# http://help.quandl.com/article/93-how-do-i-install-the-quandl-python-library
# https://pypi.python.org/pypi/Quandl
# https://github.com/quandl/quandl-python
RUN pip install quandl
USER $NB_USER
# Install Pandas Datareader
# https://github.com/pydata/pandas-datareader
RUN pip install pandas-datareader
# Install Octave kernel
# https://pypi.python.org/pypi/octave_kernel
RUN pip install octave_kernel
RUN python -m octave_kernel.install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment