'jupyter' 不是内部或外部命令,也不是可运行的程序

【环境】win10

【解决】首先要安装python3,其次按以下步骤排查:

  1. 没有安装jupyter notebook,安装它:

    python3 -m pip install --upgrade pip
    python3 -m pip install jupyter
    
  2. 安装了jupyter notebook,但是没有添加到系统path,添加一下:

    C:\Users\xxx\AppData\Local\Programs\Python\Python37\lib\site-packages
    

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