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

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


当前回答

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

希望这能起作用。

其他回答

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

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

pip install notebook

or

poetry add notebook

在终端中执行

export PATH=~/anaconda3/bin:$PATH

为我工作过Ubuntu 16.10, Python3, Anaconda3

更新

在~/中添加路径。Bashrc或~/。Zshrc(如果您正在使用ZSH bash)文件

vi ~/.bashrc

向文件中添加以下行

PATH=~/path/to/anaconda:$PATH

用以下命令关闭文件

esc + : + wq

现在是2020年。 在我身边用mac解决这个问题: PIP安装jupyterlab而不是PIP安装jupyter。 在成功安装关键字之前会有一个警告: 在这里输入图像描述

你可以用jupyterlab看到路径 然后你只需要开始jupyter笔记本以下路径:

jupyter-lab

笔记本电脑将自动加载由您的默认浏览器。

在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用户退出后执行:

朱皮特笔记本

在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