Last active
April 7, 2020 16:21
-
-
Save omrylcn/96fbc4dc89b58e975648febcbd544f74 to your computer and use it in GitHub Desktop.
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 ubuntu:18.04 | |
# Paket listelerini download et | |
RUN apt-get update | |
# python3 and jupyter-lab paketini yükle | |
RUN apt-get install -y python3 | |
# python paket yükleyicisi | |
RUN apt-get install -y python3-pip | |
# jupyterlab ı yükle | |
RUN pip3 install jupyterlab | |
RUN mkdir app | |
# python paketlerinin yazılı olduğu dosya | |
ADD [ "./requirements.txt", "/app/requirements.txt" ] | |
# data science için kullanışlı paketleri text dosyasına bakarak yükler | |
RUN pip3 install -r /app/requirements.txt | |
WORKDIR /app | |
ENTRYPOINT ./run_jupyterlab.sh | |
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
numpy | |
scipy | |
pandas | |
scikit-learn | |
matplotlib | |
seaborn | |
plotly | |
statsmodels | |
yellowbrick | |
catboost | |
lightgbm | |
xgboost |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment