ipython3 - 没有名为notebook

时间:2015-09-26 07:03:58

标签: ipython ipython-notebook

我在我的Ubuntu 14.04机器上安装了ipython3和ipython3-notebook。

命令'ipython3'在控制台中打开一个ipython实例,按预期运行Python 3.4。

然而,当我尝试使用

进入浏览器版本时
ipython3 notebook

我得到一个“ImportError:没有名为'notebook'的模块”

我尝试重新安装ipython3-notebook但收到消息“ipython3-notebook已经是最新版本。”

我在这里缺少什么?

2 个答案:

答案 0 :(得分:7)

试试这个:

pip install jupyter

easy_install jupyter

答案 1 :(得分:0)

pip似乎使用了python的默认版本(在我的情况下是python2.7)。

所以,我尝试为python3安装pip3,

sudo apt install python3-pip

并使用pip3安装jupyter,

pip3 install jupyter

像魅力一样工作!