首页 > 解决方案 > 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-notebookexec 并运行它。

如何从终端使用 Jupyter 命令?

标签: pipjupyterzsh

解决方案


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

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

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

如果您不知道pip将文件放在哪个目录中,您可以尝试

find / -name juypter 2>/dev/null

find错误重定向是可取的,因为否则您将收到大量有关不允许 cd 进入的目录的错误消息。


推荐阅读