Skip to content

Instantly share code, notes, and snippets.

@bgalvao
Last active August 31, 2018 17:43
Show Gist options
  • Select an option

  • Save bgalvao/03aafef04c3e33ee910f133562b1cb67 to your computer and use it in GitHub Desktop.

Select an option

Save bgalvao/03aafef04c3e33ee910f133562b1cb67 to your computer and use it in GitHub Desktop.
Data Science env
FROM continuumio/miniconda3
RUN conda install -c conda-forge -y pandas scipy
RUN conda install -c conda-forge -y matplotlib seaborn
RUN conda install -c conda-forge -y bowtie-py tqdm
RUN conda install -c conda-forge -y scikit-learn jupyterlab
RUN conda install -c conda-forge -y ipywidgets plotly dash
RUN jupyter labextension install @jupyterlab/plotly-extension
RUN jupyter labextension install @jupyter-widgets/jupyterlab-manager
RUN conda install -c conda-forge -y dask-ml dask-distance
RUN conda install -c conda-forge -y textblob # nltk wrapper
RUN conda install -c conda-forge -y numpy
# install additional packages from this line downwards
# docker build -t bgcg/conda-ds .
WORKDIR /home/notebooks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment