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

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


当前回答

我尝试了所有的方法,最后在运行树莓派4的树莓派操作系统上,这对我来说是有效的

sudo apt install python3-notebook jupyter jupyter-core

其他回答

Try

Python -m notebook

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

Python3 -m笔记本

在Mac OS Catalina和Python3.7上

大多数情况下(在jupyter不在/local/bin的情况下)使用,

which jupyter

示例输出

~/miniconda3/bin/jupyter

要查看jupyter的路径,请使用sudo显式地使用该路径

sudo ~/miniconda3/bin/jupyter 

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

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

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

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

jupyter-lab

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

在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