用pip安装jupyter后,终端仍然找不到jupyter笔记本。

Ubuntu只是说命令没有找到。与ipython类似。pip没有安装好还是怎么了?Ubuntu如何知道在哪里寻找安装了pip的可执行文件?


当前回答

Try

Python -m notebook

或者,如果您使用pip3安装笔记本:

Python3 -m笔记本

在Mac OS Catalina和Python3.7上

其他回答

如果你使用'pip'而不是'pip3'为Python 2安装Jupyter notebook,它可能会运行:

ipython notebook

在MacOs上,这对我来说很管用:

/Users/`userName`/opt/anaconda3/bin/jupyter_mac.command

在Mac Os High Sierra上,我安装了jupyter

python3 -m pip install jupyter    

然后,二进制文件被安装在:

/Library/Frameworks/Python.framework/Versions/3.6/bin/jupyter-notebook

使用Ctrl+Alt+T打开终端窗口。 执行gedit ~/.profile命令。 加线。导出路径= $路径:/。local / bin / jupyter-notebook。到底部保存。 注销后重新登录。

希望这能起作用。

唯一对我有用的是将与pip3相关的Python版本导出到PATH:)(经过大量的挣扎) 运行:

which pip3

你应该得到这样的东西(在Mac中):

/Library/Frameworks/Python.framework/Versions/3.6/bin/pip3

现在运行:

export PATH=/Library/Python/3.6/bin:$PATH

如果它对你有用:)就把它添加到你的 Bashrc或ZSHRC