Windows pip install jupyter notebook

在Win11里,如果直接用pip install jupyter notebook来安装jupyter notebook,会安装在:

C:\Users\X用户\AppData\Roaming\Python\Python38\Scripts\jupyter-notebook.exe

这个目录不在windows path里,会找不到jupyter-notebook

先以管理员启动一个cmd,再运行pip install jupyter notebook,会安装在

C:\Program Files\Python38\Scripts\jupyter-notebook.exe

这个路径是pip等程序所在的目录,已经在Windows path里了。

可以直接运行jupyter-notebook.exe (主要中间是减号“-”,不是其它文档里的空格jupyter notebook)

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