我正在尝试使用gpu监控工具进行clara-train-example。运行startClaraTrainNoteBooks.sh时出现错误
ValueError: The extension "jupyterlab-nvdashboard" does not yet support the current version of JupyterLab.
Conflicting Dependencies:
JupyterLab Extension Package
>=3.0.6 <3.1.0 >=2.0.0 <3.0.0 @jupyterlab/application
>=3.0.5 <3.1.0 >=2.0.0 <3.0.0 @jupyterlab/apputils
>=5.0.3 <5.1.0 >=4.0.0 <5.0.0 @jupyterlab/coreutils
>=17.0.1 <18.0.0 >=16.4.2 <17.0.0 react
>=17.0.1 <18.0.0 >=16.9.0 <17.0.0 react-dom
See the log file for details: /tmp/jupyterlab-debug-53dt6_x5.log我不明白日志的内容。很多人感谢你的帮助。
发布于 2021-06-07 08:47:37
正如@krassowski所提到的,在clara-train-examples/PyTorch/NoteBooks/scripts/dockerWGPUDashboardPlugin/Dockerfile的相应DockerFile中注释掉RUN jupyter labextension install jupyterlab-nvdashboard修复了在docker-compose.yml文件中启用GPUDashboard后的问题,即:
##### to build image with GPU dashboard inside jupyter lab
build:
context: ./dockerWGPUDashboardPlugin/ # Project root
dockerfile: ./Dockerfile # Relative to context
image: clara-train-nvdashboard:v4.0https://stackoverflow.com/questions/67817972
复制相似问题