cmd使用jupyter报错“jupyter不是内部或外部命令“解决方法

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

你可能感兴趣的:(jupyter,python)