无法在Jupyter Notebook上创建ipyparallel集群

JPN*_*JPN 9 ipython-parallel jupyter-notebook

我有以下内容:

  • ipyparallel(5.0.0)
  • ipython(4.0.3)

我在命令行输入了ipcluster:

ipcluster nbextension enable
Run Code Online (Sandbox Code Playgroud)

我正在尝试在Jupyter笔记本上的IPython Clusters选项卡上创建一个新集群,但这就是我所看到的:

screeenshot

我之前能做到这一点.谢谢!

JPN*_*JPN 4

这里

不要编辑 jupyter_notebook_config.py,而是编辑 jupyter_notebook_config.json 并查找:

  "NotebookApp": {
    "server_extensions": [
      <some lines>
    ]
Run Code Online (Sandbox Code Playgroud)

将其更改为:

  "NotebookApp": {
    "server_extensions": [
      <some lines>,
      "ipyparallel.nbextension"
    ]
Run Code Online (Sandbox Code Playgroud)