jupyter 安装后无法用terminal启动
系统:macOS Catalina
用pip3安装了jupyter
$ pip3 install jupyterlab
但是,但在terminal中输入
$ jupyter notebook
提示无法找到命令。
这是怎么回事呢???
系统环境变量的问题,也就是没有添加jupyter
所在目录到系统环境中。
这里我只讲下我是如何快速解决的。
首先:找jupyter
安装在哪
打开terminal,输入python3
回车
$ python3
Python 3.7.2 (v3.7.2:9a3ffc0492, Dec 24 2018, 02:44:43)
[Clang 6.0 (clang-600.0.57)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
导入sys
module
>>> import sys
打印sys.path
>>> prin