我正在尝试在 jupyter 实验室中添加扩展。我转到扩展选项卡,然后单击扩展上的“安装”。几秒钟后,我弹出一个说Build failed with 500, please run 'jupyter lab build' on the server for full output
谁能告诉我如何解决它或至少找到与该错误相关的日志。
我正在尝试在 jupyter 实验室中添加扩展。我转到扩展选项卡,然后单击扩展上的“安装”。几秒钟后,我弹出一个说Build failed with 500, please run 'jupyter lab build' on the server for full output
谁能告诉我如何解决它或至少找到与该错误相关的日志。
使用终端, try jupyter lab build
,它将在您的AppData\Local\Temp文件夹中生成输出(如果您在 Windows 上)。日志文件将提供有关在构建过程中导致失败的原因的更多信息。
我有同样的问题,npm 依赖是罪魁祸首。我已经用conda update -n base -c defaults conda
and 和 yarn更新了 conda conda install yarn
,它为我解决了这个问题。
还可以尝试查看这个Jupyter Labs:“RuntimeError: npm dependencies failed to install”When Building。