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

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


当前回答

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

其他回答

在终端中执行

export PATH=~/anaconda3/bin:$PATH

为我工作过Ubuntu 16.10, Python3, Anaconda3

更新

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

vi ~/.bashrc

向文件中添加以下行

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

用以下命令关闭文件

esc + : + wq

在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

用conda重新安装jupyter:

conda install jupyter

在Mac Os High Sierra上,我安装了jupyter

python3 -m pip install jupyter    

然后,二进制文件被安装在:

/Library/Frameworks/Python.framework/Versions/3.6/bin/jupyter-notebook

我都试过了,

pip install jupyter

and

pip3 install jupyter

但最后还是用

sudo -H pip install jupyter

以另一个用户-H执行命令

-H (HOME)选项要求安全策略将HOME环境变量设置为密码数据库指定的目标用户(默认为root)的主目录。根据策略的不同,这可能是默认行为。