本文介绍了在 IBM Data Science Experience 上启用 nbextension的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我必须在 IBM Data Science Experience 的 Jupyter 上启用文件上传小部件.它需要以下一组命令:

I have to enable File Upload widgets on Jupyter on IBM Data Science Experience. It requires the following set of commands:

pip install fileupload
jupyter nbextension install --py fileupload
jupyter nbextension enable --py fileupload

看起来我们需要在平台上拥有 sudo 权限才能执行 IBM Data Science Experience 不允许我执行的第二个和第三个命令.

It looks we need to have sudo permission on the platform to execute the 2nd and 3rd commands which IBM Data Science Experience is not allowing me to do.

如何在平台上安装文件上传小部件?

How can I do this on the platform to install the file upload widget?

推荐答案

用户无法在 DSX Jupyter 笔记本上启用笔记本扩展.笔记本服务器的配置,包括启用的笔记本扩展集,由平台运营商独家控制.

Users cannot enable notebook extensions on DSX Jupyter notebooks. The configuration of the notebook server, including the set of enabled notebook extensions, is under exclusive control of the platform operator.

这篇关于在 IBM Data Science Experience 上启用 nbextension的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-22 11:56