Answers:
对于4.0及更高版本,您需要与https://github.com/jupyter/notebook分开安装笔记本应用
pip install jupyter
pip3 install jupyter
如果您使用的是默认使用Python 3的系统
ipyton notebook <notebook>
对您不起作用,请在下面的评论中提及@meduz jupyter notebook <notebook
可能可以运行。那为我解决了这个问题。
pip3.6 install jupyter
完成了工作
conda install jupyter
将安装最新的jupyter以及其他必需的依赖项
将下载以下软件包:
package | build
---------------------------|-----------------
mistune-0.7 | py27_0 186 KB
jinja2-2.8 | py27_0 263 KB
jupyter_core-4.0.3 | py27_0 25 KB
tornado-4.2.1 | py27_0 515 KB
jupyter_client-4.0.0 | py27_0 88 KB
nbformat-4.0.0 | py27_0 112 KB
ipykernel-4.0.3 | py27_0 111 KB
nbconvert-4.0.0 | py27_0 266 KB
jupyter_console-4.0.0 | py27_0 22 KB
notebook-4.0.1 | py27_0 4.2 MB
qtconsole-4.0.0 | py27_0 120 KB
ipywidgets-4.0.2 | py27_0 93 KB
jupyter-1.0.0 | py27_0 2 KB
------------------------------------------------------------
Total: 6.0 MB
升级ipython时遇到相同的问题。这是链接到最新4
版本的错误,建议您切换回稳定版本3.2.1
:
pip uninstall -y ipython
pip install ipython==3.2.1
-y
选项表示“是,我要卸载”,没有任何交互pip install jupyter
。
jupyter notebook
命令代替ipython notebook
一个命令。
pip install jupyter
足以修复错误并启动笔记本。