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

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


当前回答

我用下面的命令从源代码编译了python3.7

./configure --prefix=/opt/python3.7.4 --with-ssl
make
make install

pip3.7安装jupyter后,我发现可执行文件在/opt/python3.7.4/bin下

在Python3编译后缺少sqlite3以获得更多关于python3.7和ubuntu14.04下pip的详细信息

其他回答

使用Ctrl+Alt+T打开终端窗口。 执行gedit ~/.profile命令。 加线。导出路径= $路径:/。local / bin / jupyter-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

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

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

pip install notebook

or

poetry add notebook

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

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

which jupyter

示例输出

~/miniconda3/bin/jupyter

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

sudo ~/miniconda3/bin/jupyter