Answers:
打开终端并输入:
sudo apt install python3-notebook jupyter jupyter-core python-ipykernel
要启动笔记本服务器,请运行以下命令:
jupyter notebook
您应该在网络浏览器中看到Jupyter Notebook打开。
Ubuntu 17.04和17.10
在Ubuntu 17.04和更高版本中,默认的Ubuntu存储库中提供Jupyter Notebook,可以使用apt轻松快速地安装它。打开终端并输入:
sudo apt install jupyter-notebook jupyter-core python-ipykernel
python-ipykernel对于在Jupyter Notebook中运行Python 2.x程序是必需的,否则它仅支持Python3.x。
要启动笔记本服务器,请运行以下命令:
jupyter notebook
您应该在网络浏览器中看到Jupyter Notebook打开
Ubuntu 16.04和更早版本
Google Colaboratory是Google的免费Jupyter笔记本环境,无需进行设置即可完全在云中运行。
jupyter-troubleshoot
将帮助您解决此问题。
apt-get install jupyter-notebook
,如下建议:stackoverflow.com/questions/42648610/...
我使用安装
pip install jupyter
(如果安装了Python3,则为pip3;此外,请确保您具有root用户访问权限,即以root @ ...登录到终端)
和python依赖项
apt-get install build-essential python3-dev
在ubuntu桌面14.04.3 LTS中。我在python3上。
根据官方建议,我们应该使用:
python -m pip install jupyter
python3 -m pip install jupyter
在执行此命令和所有之前的命令后,我遇到了权限错误的问题。要解决它,我们应该使用下一个命令:
python -m pip install jupyter --user
python3 -m pip install jupyter --user
sudo -H pip3 install jupyter
(使用pip3
,而不是pip
)为我提供了许多其他方法。我在lavano chromebook c330内置的python 3.5.3上的ubuntu linux上执行了此操作。还安装了spyder和许多喜欢的命令,例如“ locate”。
$jupyter notebook
执行Jupyter命令'notebook'时出错:[Errno 2]没有这样的文件或目录