我在Anaconda环境中运行Python 3.6.1上的笔记本5.0.0。
在我的环境中成功安装jupyter-dashboards-bundlers并输入后(根据https://github.com/jupyter-incubator/dashboards_bundlers的说明):
jupyter bundlerextension enable --sys-prefix --py dashboards_bundlers
我收到错误:
ModuleNotFoundError:没有名为'dashboards_bundlers'的模块
如果我跑:
jupyter bundlerextension list
它没有显示已知的bundlerextensions。
有什么想法吗?
谢谢。
答案 0 :(得分:1)
我能够通过在pip命令中添加一个--ignore-install标志来解决这个问题,正如以下线程中针对具有相同问题的不同模块所建议的那样:
https://github.com/tensorflow/tensorflow/issues/6548
谢谢。