zsh:找不到命令:jupyter



我用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 python3which 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执行官并运行它。

如何从我的终端使用 Jupyter 命令?

您编写的两个 PATH 定义都没有意义,因为您已从 PATH 中删除了标准目录。您需要找到可执行文件juypter所在的目录,然后将此目录添加到您的 PATH 中。这与要通过 PATH 执行的任何其他程序的过程相同。

作为替代方法,您始终可以通过显式指定路径来调用juypter

/path/to/your/installed/file/juypter

如果您不知道将文件放入哪个 directoypip,您可以尝试

find / -name juypter 2>/dev/null

建议进行错误重定向,否则您将收到大量有关不允许 cd 进入find目录的错误消息。

最新更新