启动jupyter notebook出现Fatal error in launcher: 的解决方法
win10命令行中启动jupyter notebook或者jupyter时,会报错Fatal error in launcher: (启动器发生致命错误)
我出现这种问题的原因是移动过python的目录文件,以下是我的两种解决方法:
1、直接使用jupyter-notebook启动(中间有一杠,前提是环境变量没问题)
jupyter-notebook
2、重新安装jupyter, 只要执行一下命令即可
pip uninstall jupyter -y
pip uninstall jupyter-core -y
也可以一行代码搞定:
pip uninstall jupyter, jupyter-core -y
最后重新安装即可
pip install jupyter
重新安装jupyter之后,命令:jupyter notebook就可以用了