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

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


当前回答

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

其他回答

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

为了能够从终端运行jupyter notebook,您需要确保~/。Local /bin在您的路径中。

通过执行export PATH=$PATH:~/来实现。当前会话的本地/bin,或者将该行添加到~/的末尾。Bashrc使您的更改在以后的会话中持续(例如使用nano ~/. Bashrc)。如果您编辑~/。Bashrc,您将需要登出并重新登录,以查看您的更改生效。

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

sudo apt install python3-notebook jupyter jupyter-core

我用下面的命令从源代码编译了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的详细信息

在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