ubuntu安装jupyter notebook

UBUNTU 安装 jupyter notebook


1.首先要安装pip
Ctrl+Alt+T,打开终端。
在终端中输入:
sudo apt install python-pip
apt是应用列表,这个命令是从应用列表中拉取pip应用安装。
会要求你输入你的用户密码。
输入后,如下图。
ubuntu安装jupyter notebook_第1张图片

2.接着在终端输入pip install jupyter 后,报错了:
Command “python setup.py egg_info” failed with error code 1 in /tmp/pip-buil
从网上找到解决方法命令:
sudo python -m pip install --upgrade --force pip
这句命令是用来升级应用pip的。
ubuntu安装jupyter notebook_第2张图片

3.升级了之后,再pip install jupyter,成功。
ubuntu安装jupyter notebook_第3张图片
4.我用jupyter notebook命令没能成功打开。
ubuntu安装jupyter notebook_第4张图片
5.于是我按提示,在终端输入:
sudo snap install jupyter
回车,后来就安装成功了。
再用jupyter notebook命令就可以打开了。
ubuntu安装jupyter notebook_第5张图片
6.想要关闭的时候,在终端页面按ctrl+c
会提示询问:关闭服务(y/n)
输入y即可关闭。
ubuntu安装jupyter notebook_第6张图片

备注:
文章仅代表个人安装经历记录。

你可能感兴趣的:(经验)