ImportError:运行jupyter notebook时没有名为IPython.paths的模块?

时间:2016-03-22 22:36:54

标签: python ipython jupyter-notebook

我通过以下方式安装了jupyter:/usr/local/opt/python/bin/python2.7 -m pip install jupyter

此安装ipython版本4.1.2。但是,当我运行jupyter笔记本时,我得到:

Traceback (most recent call last):
  File "/usr/local/bin/jupyter-notebook", line 7, in <module>
    from notebook.notebookapp import main
  File "/Library/Python/2.7/site-packages/notebook/notebookapp.py", line 83, in <module>
    from IPython.paths import get_ipython_dir
ImportError: No module named IPython.paths

然而,当我从IPython.paths运行时直接在ipython shell中导入get_ipython_dir它可以正常工作。此外,当我运行/usr/local/opt/python/bin/python2.7然后同样的事情,它运行成功。另外,当我检查python中的sys.executable路径时,我得到/usr/local/opt/python/bin/python2.7

这对我没有意义。 Ipython和我的普通python(都使用/usr/local/opt/python/bin/python2.7)如何成功运行,但我的jupyter,安装了特定的python,无法运行命令。有什么建议吗?

2 个答案:

答案 0 :(得分:4)

我遇到了同样的问题。刚才这对我有帮助。有人可能会觉得这很有用。

    from IPython.paths import get_ipython_dir
ImportError: No module named IPython.paths

所以我在Linux 17上运行Python 3.我首先使用该命令从我的系统中卸载了jupyter。

sudo -H pip3 uninstall jupyter

成功卸载后,我再次使用以下命令安装了jupyter。

sudo -H pip3 install jupyter

当我再次使用

启动jupyter时
jupyter notebook

kernel没有死或没有重启。现在一切都很好。我希望至少有一个人觉得这很有用。

答案 1 :(得分:0)

升级ipython:

pip install ipython==5.3.0

如果无法卸载ipython,请尝试以下操作:

sudo -H pip install --ignore-installed -U ipython==5.3.0