簡體   English   中英

安裝后無法在ubuntu 18.04.3上啟動Jupyter Notebook

[英]Can't start jupyter notebook on ubuntu 18.04.3 after installed it

我正在使用python3並安裝了運行的jupyter-notebook: $ sudo apt install jupyter-notebook

現在,當我輸入“ jupyter-notebook”時,出現以下錯誤:

Traceback (most recent call last):
  File "/usr/bin/jupyter-notebook", line 11, in <module>
    load_entry_point('notebook==5.2.2', 'console_scripts', 'jupyter-notebook')()
  File "/home/helias/.local/lib/python3.6/site-packages/pkg_resources/__init__.py", line 489, in load_entry_point
    return get_distribution(dist).load_entry_point(group, name)
  File "/home/helias/.local/lib/python3.6/site-packages/pkg_resources/__init__.py", line 2852, in load_entry_point
    return ep.load()
  File "/home/helias/.local/lib/python3.6/site-packages/pkg_resources/__init__.py", line 2443, in load
    return self.resolve()
  File "/home/helias/.local/lib/python3.6/site-packages/pkg_resources/__init__.py", line 2449, in resolve
    module = import(self.module_name, fromlist=['name'], level=0)
  File "/usr/lib/python3/dist-packages/notebook/notebookapp.py", line 43, in <module>
    ioloop.install()
  File "/usr/lib/python3/dist-packages/zmq/eventloop/ioloop.py", line 210, in install
    assert (not ioloop.IOLoop.initialized()) or \
AttributeError: type object 'IOLoop' has no attribute 'initialized'

我使用pip解決了此安裝/更新庫pyzmq的問題

pip3 install pyzmq

注:使用只是pip ,如果你正在使用Python2。

如果您使用的是conda ,則可以運行:

conda install -c anaconda pyzmq

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM