- 安装jupyter:
pip install jupyter
,等下载完成
- 安装完成后运行
jupyter notebook
提示以下报错:
"jupyter" 不是内部或外部命令,也不是可运行的程序
或批处理文件。
- 再次执行
pip install jupyter
,提示如下信息:
Requirement already satisfied: jupyter in d:\python\python39\lib\site-packages (1.0.0)
Requirement already satisfied: jupyter-console in d:\python\python39\lib\site-packages (from jupyter) (6.4.4)
Requirement already satisfied: qtconsole in d:\python\python39\lib\site-packages (from jupyter) (5.3.2)
...
- 进到报错提示的
d:\python\python39\lib\site-packages
这个文件夹,发现执行文件名叫作jupyter-notebook.exe
,因此要检查以下两点:
- 环境配置中是否将
d:\python\python39\lib\site-packages
添加到了Path
下 (为什么只有你不像别的包一样老老实实装到\Scripts
文件夹下啊摔! )
- 再次执行
jupyter-notebook
(注意和你的执行文件名保持一致),成功弹出服务器窗口