因此,我在网上找到了一个演示 jupyter notebook,它带有用于调整图形输入的切换。我想与某人共享此仪表板,而不共享其背后运行的代码。
我该怎么做?我对 Jupyter Dashboards 部署非常陌生。
我看过教程,我看到“文件”下有这个选项“部署”(文件->部署为->本地仪表板。)
我在网上找到的 Jupyter 笔记本示例在此处提供了“部署为本地仪表板”选项,而我的 jupyter 没有该选项。
因此,我在网上找到了一个演示 jupyter notebook,它带有用于调整图形输入的切换。我想与某人共享此仪表板,而不共享其背后运行的代码。
我该怎么做?我对 Jupyter Dashboards 部署非常陌生。
我看过教程,我看到“文件”下有这个选项“部署”(文件->部署为->本地仪表板。)
我在网上找到的 Jupyter 笔记本示例在此处提供了“部署为本地仪表板”选项,而我的 jupyter 没有该选项。
为了“部署”仪表板,您需要安装dashboards_bundlers包并为 Jupyter 笔记本启用仪表板捆绑器扩展。这是您的虚拟环境/conda env 中的一次性活动。
pip install jupyter_dashboards_bundlers
jupyter bundlerextension enable --sys-prefix --py dashboards_bundlers
注意:这些 dashboard_bundlers 是 Jupyter Dashboards 生态系统的一部分,其中包括:
这些以前处于 jupyter-incubator 模式,但我认为它们在今年早些时候被转移到了主流 repo。