【发布时间】:2020-05-14 20:35:36
【问题描述】:
我用 pip3 安装了 juypter。这是pip3 show Jupiter的输出:
Name: jupyter
Version: 1.0.0
Summary: Jupyter metapackage. Install all the Jupyter components in one go.
Home-page: http://jupyter.org
Author: Jupyter Development Team
Author-email: jupyter@googlegroups.org
License: BSD
Location: /Users/myuser/Library/Python/3.8/lib/python/site-packages
Requires: notebook, ipywidgets, ipykernel, qtconsole, nbconvert, jupyter-console
Required-by:
which python3 和which pip3输出:
/usr/local/bin/python3
/usr/local/bin/pip3
当我输入任何Jupiter 命令时,zsh 返回:command not found: jupyter
我读到我已经修改了我的 §PATH 变量。
我尝试将其更改为两者
export PATH=/Users/myuser/Library/Python/3.8/lib/python/site-packages
export PATH=/Users/myuser/Library/Python/3.8
如果我在 Finder 中搜索“Jupyter”,我可以找到例如 jupyter-notebook exec 并运行它。
如何从终端使用 Jupyter 命令?
【问题讨论】: