Mac下jupyter notebook的搭建及使用

一、Jupyter搭建:

pip install --user jupyter

如果是在python3中,则用如下命令:

pip3 install --user jupyter

二、Jupyter使用:(启动方式1)

安装完成后,在命令行中输入:

python -m IPython notebook

三、Bug处理:

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

  1. 先找到 jupyter 安装位置, 通常是在:
/Users/yy(your_user_name)/Library/Python/2.7/bin
  1. 将下面命令添加到 ~/.bash_profile 中:
export PATH=/Users/yy(your_user_name)/Library/Python/2.7/bin/:$PATH
  1. 执行:
source .bash_profile
  1. 启动:(启动方式2)
jupyter notebook

问题得到解决。

参考:

  1. Mac下Jupyter(即IPython-notebook)的搭建及使用
  2. [解决办法] jupyter command not found
  3. Jupyter Notebook介绍、安装及使用教程

你可能感兴趣的:(Jupyter,Notebook,jupyter,notebook,mac)