不能使用`python3.x`中的`jupyter`:jupyter:command not found

时间:2017-12-28 18:50:22

标签: python python-3.x jupyter-notebook jupyter

我使用的是MacOS,我只是按照此处列出的安装说明操作: http://jupyter.org/install.html

满足此命令:

$ python3 -m pip install --upgrade pip
Requirement already up-to-date: pip in /opt/local/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages

已安装jupyter

$ python3 -m pip install jupyter 
Requirement already satisfied: jupyter in /opt/local/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages

但是,jupyter命令似乎都不起作用:

$ jupyter 
-bash: jupyter: command not found
$ jupyter notebook
-bash: jupyter: command not found

鉴于上述路径,有没有办法运行jupyter notebook?必须安装它。

1 个答案:

答案 0 :(得分:1)

脚本的位置可能不在您的$PATH

我会猜测他们可能在/opt/local/bin,或者/opt/bin

如果您有locate计划,请尝试locate bin/jupyter。否则请尝试find

find /opt -type f -name jupyter

然后将二进制文件的实际位置添加到$PATH

在macos中

编辑Apparently,您必须在/etc/paths中添加您在新行中找到的路径。

在这种情况下,/opt/local/Library/Frameworks/Python.framework/Versions/3.4/‌​bin

您应该注销然后再次登录才能使$PATH中的更改生效。

之后,以jupyter notebook启动笔记本。