如何在Ubuntu 15.10中安装/运行Jupyter?

时间:2016-04-16 10:17:25

标签: python jupyter

我已经安装了python3 / ipython3(和笔记本)。所以我followed the instructions,我做了:

$ pip3 install jupyter

似乎已经成功了。但似乎没有安装(至少不在我的PATH中):

$ jupyter
jupyter: command not found

$ python3 jupyter
python3: can't open file 'jupyter': [Errno 2] No such file or directory

$ ipython3 jupyter
[TerminalIPythonApp] WARNING | File not found: 'jupyter'

$ ipython jupyter
[TerminalIPythonApp] WARNING | File not found: u'jupyter'

对不起,对于python安装细节我是个菜鸟,我当然错过了一些明显的东西,但我在文档中找不到它。

任何帮助将不胜感激!! :)

2 个答案:

答案 0 :(得分:4)

Jupyter Notebook正在取代IPython Notebook,这是用于创建IPython笔记本的最常用的基于Web的交互式计算环境。

enter image description here

从Ubuntu 17.04开始,Jupyter Notebook可以直接从Ubuntu 17.04和17.10中的默认Ubuntu存储库(sudo apt install jupyter-notebook jupyter-core python-ipykernel)安装。 python-ipykernel是在Jupyter Notebook中运行Python 2.x程序所必需的,否则它只支持Python 3.x.

在Ubuntu 18.04及更高版本中安装Jupyter Notebook

打开终端并输入:

sudo apt install python3-notebook jupyter-core python-ipykernel 

python-ipykernel是在Jupyter Notebook中运行Python 2.x程序所必需的,否则它只支持Python 3.x.

要启动笔记本服务器,请运行以下命令:

jupyter notebook

您应该会在网络浏览器中看到Jupyter Notebook。

在Ubuntu 14.04→16.10

中安装Jupyter Notebook

以下说明适用于在Ubuntu 14.04→16.10中安装Jupyter Notebook。 Ubuntu中的默认Python版本工作正常,但是pip需要更新到最新版本。

sudo apt update
sudo apt -y install python-pip python-dev
sudo -H pip install --upgrade pip
sudo apt -y install ipython ipython-notebook
sudo -H pip install jupyter

要启动笔记本服务器,请运行以下命令:

jupyter notebook  

您应该会在网络浏览器中看到Jupyter Notebook。

如果您还安装了python-matplotlib,那么在当前Notebook中启用绘图的第一行代码是%matplotlib inline

答案 1 :(得分:1)

尝试调试安装Golang内核(gophernotes)的另一个问题,我发现它安装在${HOME}/.local/bin/jupyter中。

问题解决了。