首页 > 解决方案 > 如何安装 Jupyter notebook 并启动 notebook?

问题描述

我被困在试图加载 Jupyter。我感觉这可能是一个更新问题,但我不知道如何解决它。

当我输入时我得到了一点牵引力pip install notebook,然后在下载了几个文件后它给了我这个错误。

Could not find a version that satisfies the requirement pywin32>=1.0; sys_platform == "win3
2" (from jupyter-core>=4.6.1->notebook) (from versions: )
No matching distribution found for pywin32>=1.0; sys_platform == "win32" (from jupyter-core>=
4.6.1->notebook)

当我尝试输入 jupyter notebook 时,它给了我这个消息。

'jupyter' 不是内部或外部命令、可运行程序或批处理文件。

标签: pythonjupyter-notebookinstallation

解决方案


要安装 jupyter notebook,您可以使用以下命令:

pip install jupyter

运行你的笔记本。只需键入

jupyter notebook

如果您再次收到此错误,则第二个选项是下载 Anaconda。


推荐阅读