Last active
August 31, 2018 17:43
-
-
Save bgalvao/03aafef04c3e33ee910f133562b1cb67 to your computer and use it in GitHub Desktop.
Data Science env
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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