[解决办法] jupyter command not found

Posted Sinsa_SI

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[解决办法] jupyter command not found相关的知识,希望对你有一定的参考价值。

原文:https://blog.csdn.net/songyu0120/article/details/78245092

在 EI captain 版本以及以上系统的 Mac 上使用 pip 安装 python 相关的包的时候, 由于 sip 机制 (System Integrity Protection) 的不允许命令行写入内容到系统目录, 因此一个比较”优雅”的解决方案就是针对当前用户安装包

pip install jupyter --user

安装完成后, 直接在命令行里输入jupyter notebook可能会显示jupyter command not found, 这是由于 pip 安装完 jupyter 后并没有将其加入到 mac 当前运行环境中.

  1. 先找到 jupyter 安装位置, 通常是在

    /Users/yy(your_user_name)/Libraries/Python/2.7/bin

  2. 将下面命令添加到~/.bash_profile
    export export PATH=/Users/yy(your_user_name)/Library/Python/2.7/bin/:$PATH

  3. 执行

    source .bash_profile

问题得到解决。

以上是关于[解决办法] jupyter command not found的主要内容,如果未能解决你的问题,请参考以下文章

[解决办法] jupyter command not found

Jupyter中AttributeError: module ‘sklearn.tree‘ has no attribute ‘plot_tree‘的解决方法

Jupyter中运行魔法%matplotlib inline出错ModuleNotFoundError: No module named ‘matplotlib‘

CentOS7下解决ifconfig command not found的办法

Jupyter command `jupyter-contrib` not found

升级10.11后使用CocoaPod出现-bash: pod: command not found 解决办法-备