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

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


当前回答

尝试“pip3 install jupyter”,而不是pip。这对我很管用。

其他回答

在Ubuntu上安装Jupyter Notebook之后,我得到了以下错误:

异常:Jupyter命令' Jupyter -notebook'未找到。

我使用简单的命令,它为我工作

PIP install——upgrade——force-重装——no-cache-dir jupyter

来源:http://commandstech.com/how-to-install-jupyter-on-ubuntu16-04-with-pictures-commands-errors-solution/

从root用户退出后执行:

朱皮特笔记本

如果jupyter运行此命令:

~/.local/bin/jupyter-notebook

只需在终端中运行此命令

 export PATH=~/.local/bin:$PATH

唯一对我有用的是将与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

更新的Jupyter版本默认不附带笔记本组件。

根据你的包管理器,你可以通过以下方式安装笔记本组件:

pip install notebook

or

poetry add notebook

在Mac OS上,您需要导出~/。在$PATH变量中使用local/bin。

# Edit the bash profile:
$ vim ~/.bash_profile

# Add this line inside ~/.bash_profile:
export PATH=$PATH:~/.local/bin

# Update the source:
$ source ~/.bash_profile

# Open Jupyter:
$ jupyter notebook