本文介绍了在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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-13 13:37