如何安装Jupyter笔记本并启动笔记本?

问题描述 投票:0回答:1

我在加载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' is not recognized as internal or external command, operable program or batch file.

'jupyter'不被识别为一个内部或外部命令,可操作的程序或批处理文件。

python jupyter-notebook install
1个回答
0
投票

根据你分享的错误信息,我假设你是在Windows操作系统上执行的。

在Windows上安装jupyter后,它并没有直接添加到你的PATH中,不能直接从命令行执行。

我看到这里有两个选择。

我的建议是安装 蟒蛇. 在Anaconda提示下,你应该可以直接启动笔记本。

如果你真的想,你可以选择改变你的系统设置,这样你就可以从命令行运行jupyter。本章的建议 岗位


0
投票

要安装jupyter笔记本,你可以使用这个命令。

pip install jupyter

要运行你的笔记本, 只要输入

jupyter notebook

如果你再次遇到这个错误,第二个选择是下载Anaconda。

© www.soinside.com 2019 - 2024. All rights reserved.