2

如何使用带有 allennlp==0.3.0 的 JupyterLab?

当我通过浏览器访问 jupyterlab 时,python 内核死了:

notebook_1    |     from prompt_toolkit.shortcuts import create_prompt_application, create_eventloop, create_prompt_layout, create_output
notebook_1    | ImportError: cannot import name 'create_prompt_application'
notebook_1    | [I 18:47:49.552 LabApp] KernelRestarter: restarting kernel (3/5), new random ports
notebook_1    | Traceback (most recent call last):
notebook_1    |   File "/opt/conda/envs/pytorch-py3.6/lib/python3.6/runpy.py", line 193, in _run_module_as_main
notebook_1    |     "__main__", mod_spec)
notebook_1    |   File "/opt/conda/envs/pytorch-py3.6/lib/python3.6/runpy.py", line 85, in _run_code
notebook_1    |     exec(code, run_globals)
notebook_1    |   File "/opt/conda/envs/pytorch-py3.6/lib/python3.6/site-packages/ipykernel_launcher.py", line 15, in <module>
notebook_1    |     from ipykernel import kernelapp as app
notebook_1    |   File "/opt/conda/envs/pytorch-py3.6/lib/python3.6/site-packages/ipykernel/__init__.py", line 2, in <module>
notebook_1    |     from .connect import *
notebook_1    |   File "/opt/conda/envs/pytorch-py3.6/lib/python3.6/site-packages/ipykernel/connect.py", line 13, in <module>
notebook_1    |     from IPython.core.profiledir import ProfileDir
notebook_1    |   File "/opt/conda/envs/pytorch-py3.6/lib/python3.6/site-packages/IPython/__init__.py", line 55, in <module>
notebook_1    |     from .terminal.embed import embed
notebook_1    |   File "/opt/conda/envs/pytorch-py3.6/lib/python3.6/site-packages/IPython/terminal/embed.py", line 16, in <module>
notebook_1    |     from IPython.terminal.interactiveshell import TerminalInteractiveShell
notebook_1    |   File "/opt/conda/envs/pytorch-py3.6/lib/python3.6/site-packages/IPython/terminal/interactiveshell.py", line 22, in <module>
notebook_1    |     from prompt_toolkit.shortcuts import create_prompt_application, create_eventloop, create_prompt_layout, create_output
notebook_1    | ImportError: cannot import name 'create_prompt_application'
notebook_1    | [W 18:47:55.574 LabApp] KernelRestarter: restart failed

安装旧版本的 create_prompt_application 没有帮助(它会导致其他问题)。

4

1 回答 1

1

我在存储库中找到了这个线程jupyter console,也许它会对你有所帮助。

上述讨论中的一些解决方案。每个列表条目都是单独的解决方案

  1. pip install 'prompt-toolkit==1.0.15'
  2. pip install --upgrade ipython
  3. pip uninstall prompt-toolkit 
    pip install prompt-toolkit==1.0.15 
    pip uninstall jupyter-console 
    pip install jupyter-console==5.2.0
  4. 只是为了让 iPython 恢复并运行对我有用的是卸载 Jupyter,因为我当时不需要它:

    删除此人pip uninstall jupyter

    卸载有问题的版本pip uninstall prompt_toolkit

    删除旧的“损坏版本”pip uninstall ipython

    让 pip 安装它的首选依赖项pip install ipython

于 2018-10-24T17:13:45.403 回答