Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add jupyterlab python package #622

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docker-bits/6_jupyterlab.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ RUN pip install \
'git+https://github.com/betatim/vscode-binder' && \
# jupyter_contrib_nbextensions likes to be installed with pip
mamba install --quiet --yes -c conda-forge \
'jupyterlab' \
'jupyter_contrib_nbextensions' \
'dash' \
'plotly' \
Expand Down
1 change: 1 addition & 0 deletions output/jupyterlab-cpu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ RUN pip install \
'git+https://github.com/betatim/vscode-binder' && \
# jupyter_contrib_nbextensions likes to be installed with pip
mamba install --quiet --yes -c conda-forge \
'jupyterlab' \
'jupyter_contrib_nbextensions' \
'dash' \
'plotly' \
Expand Down
1 change: 1 addition & 0 deletions output/jupyterlab-pytorch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,7 @@ RUN pip install \
'git+https://github.com/betatim/vscode-binder' && \
# jupyter_contrib_nbextensions likes to be installed with pip
mamba install --quiet --yes -c conda-forge \
'jupyterlab' \
'jupyter_contrib_nbextensions' \
'dash' \
'plotly' \
Expand Down
1 change: 1 addition & 0 deletions output/jupyterlab-tensorflow/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,7 @@ RUN pip install \
'git+https://github.com/betatim/vscode-binder' && \
# jupyter_contrib_nbextensions likes to be installed with pip
mamba install --quiet --yes -c conda-forge \
'jupyterlab' \
'jupyter_contrib_nbextensions' \
'dash' \
'plotly' \
Expand Down
1 change: 1 addition & 0 deletions output/sas/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@ RUN pip install \
'git+https://github.com/betatim/vscode-binder' && \
# jupyter_contrib_nbextensions likes to be installed with pip
mamba install --quiet --yes -c conda-forge \
'jupyterlab' \
'jupyter_contrib_nbextensions' \
'dash' \
'plotly' \
Expand Down
10 changes: 6 additions & 4 deletions tests/general/test_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@
"scikit-learn": "sklearn",
"scikit-image": "skimage",
"spylon-kernel": "spylon_kernel",
"pillow": "PIL",
"pytables": "tables",
"pyyaml": "yaml",
# R
"randomforest": "randomForest",
"rsqlite": "DBI",
Expand Down Expand Up @@ -91,11 +93,11 @@
"cudatoolkit",
"cudnn",
# Python
# import PIL, not import pillow
"pillow",
# import yaml, not import pyyaml
"pyyaml",
"graphviz",
# pytables has been added because it is causing issues, TODO: understand issue and resolve
# pytables is the package but we import tables
"tables",
"pytables"
]


Expand Down
Loading