系统环境:
Centos: 7.6.1810
Python: 2.7.5
今天用pip
安装完jupyter
后,在命令行运行jupyter
竟然提示找不到相关命令。
安装命令如下:
pip install tornado==4.4.2
pip install ipython==5.1.0
pip install jupyter-client==5.2.3
pip install ipykernel==4.10.0
pip install jupyter-console==5.2.0
pip install jupyter==1.0.0
通过which jupyter
,竟然找不到相关命令

但是在/usr/bin
目录下,有其它jupyter
命令

最后经分析,是缺少jupyter-core
安装包导致的,开始安装
pip install jupyter-core== 4.4.0
安装完成后,就可以正常运行jupyter
命令了

网友评论