jupyter-notebook not found

前言

在使用pip install jupyter命令安装jupyter后,然后在cmd终端中输入“jupyter notebook”后,提示Jupyter command 'notebook': Errno 'jupyter-notebook' not found,现将解决方法总结如下。

解决方法

1、卸载jupyter后重新安装,命令如下:

pip install jupyter notebook

2、安装对应的tornado版本

查看自己的tornado版本,将安装的tornado版本升到5.1.1,命令如下:

pip install tornado==5.1.1

3、使用jupyter-notebook命令启动jupyter

jupyter-notebook not found_第1张图片

4、使用python -m notebook来启动

python -m notebook

你可能感兴趣的:(数据分析,jupyter,python)