Jupyter Notebook 安装

Jupyter Notebook 安装

是否可以通过 安装 Jupyter Notebook apt-get install?例如,我们可以使用 安装 numpy apt-get install python-numpy

答案1

Ubuntu 22.04 及更高版本

sudo apt install epiphany jupyter-notebook

创建jupyter_notebook_config.py者:

jupyter notebook --generate-config # type y for yes at the prompt

然后~/.jupyter/jupyter_notebook_config.py在文本编辑器中打开编辑并更改:

# c.NotebookApp.browser = ''

到:

c.NotebookApp.browser = '/usr/bin/epiphany'

不要忘记删除#行首的 ,这样它就不再是注释了。如果您不喜欢 Web,可以使用其他 Web 浏览器,只要它不是 snap 包,并且您将路径从 更改/usr/bin/epiphany为 Web 浏览器的路径,您可以通过运行以下形式的命令找到该路径which my-web-browser

但它仍然不起作用,所以你必须再做一步。将~/.local/share/jupyter目录的所有权从用户。 代替用户在下面的命令中将其替换为您登录的用户名。

sudo chown -R user:user ~/.local/share/jupyter 

Ubuntu 20.04

打开终端并输入:

sudo apt 安装 jupyter-notebook jupyter# jupyter 是可选的

Ubuntu 18.04-19.10

打开终端并输入:

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

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

jupyter notebook

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


Ubuntu 17.04 和 17.10

在 Ubuntu 17.04 及更高版本中,Jupyter Notebook 在默认的 Ubuntu 存储库中可用,可以使用 apt 快速轻松地安装。打开终端并输入:

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

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

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

jupyter notebook

你应该看到 Jupyter Notebook 在网络浏览器中打开

Ubuntu 16.04 及更早版本

Google Colaboratory 是 Google 的免费 Jupyter 笔记本环境,无需设置,完全在云端运行。

答案2

我使用

pip install jupyter

pip3如果安装了 Python3;另外,请确保您具有 root 访问权限,即以以下身份登录到终端根@...

以及 Python 依赖项

apt-get install build-essential python3-dev

在 ubuntu 桌面 14.04.3 LTS 中。我在使用 python3。

答案3

仅使用 apt-get 似乎不可能实现。

apt-file find jupyter ## returns no results

对于 16.04:

sudo apt-get install python-pip
pip install --upgrade pip ## secret sauce -- pip fails otherwise
sudo pip install jupyter

然后

jupyter notebook

将“pip”替换为“pip3”以便与 Python3 一起使用。

答案4

根据官方建议这里我们应该使用:

python -m pip install jupyter
python3 -m pip install jupyter

执行完此命令和所有先前的命令后,我遇到了权限错误的问题。要解决这个问题,我们应该使用下一个命令:

python -m pip install jupyter --user
python3 -m pip install jupyter --user

相关内容