From 20c05735fb805165b51654b3dc8a16faf8688a8e Mon Sep 17 00:00:00 2001 From: Yunnglin Date: Wed, 10 Jun 2026 14:16:53 +0800 Subject: [PATCH] Add ipywidgets dependency to Docker images --- docker/Dockerfile.ascend | 1 + docker/Dockerfile.ubuntu | 1 + 2 files changed, 2 insertions(+) diff --git a/docker/Dockerfile.ascend b/docker/Dockerfile.ascend index f80dbdd2..a36b3e2c 100644 --- a/docker/Dockerfile.ascend +++ b/docker/Dockerfile.ascend @@ -95,6 +95,7 @@ if [ "$INSTALL_MS_DEPS" = "True" ]; then \ pip install --no-cache-dir 'scipy' && \ pip install --no-cache-dir funtextprocessing typeguard==2.13.3 scikit-learn && \ pip install --no-cache-dir 'decord>=0.6.0' mpi4py paint_ldm ipykernel fasttext && \ + pip install --no-cache-dir ipywidgets && \ pip install --no-cache-dir 'blobfile>=1.0.5' && \ pip uninstall MinDAEC -y && \ pip install https://modelscope.oss-cn-beijing.aliyuncs.com/releases/dependencies/MinDAEC-0.0.2-py3-none-any.whl && \ diff --git a/docker/Dockerfile.ubuntu b/docker/Dockerfile.ubuntu index d61d428e..5e24846f 100644 --- a/docker/Dockerfile.ubuntu +++ b/docker/Dockerfile.ubuntu @@ -34,6 +34,7 @@ if [ "$INSTALL_MS_DEPS" = "True" ]; then \ pip install --no-cache-dir 'scipy' && \ pip install --no-cache-dir funtextprocessing typeguard==2.13.3 scikit-learn -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html && \ pip install --no-cache-dir 'decord>=0.6.0' mpi4py paint_ldm ipykernel fasttext -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html && \ + pip install --no-cache-dir ipywidgets && \ pip install --no-cache-dir 'blobfile>=1.0.5' && \ pip uninstall MinDAEC -y && \ pip install https://modelscope.oss-cn-beijing.aliyuncs.com/releases/dependencies/MinDAEC-0.0.2-py3-none-any.whl && \