mac安装jupyter记录

1. 关闭mac系统文件保护

重启你的电脑,并按住 ⌘R 进入恢复模式,打开终端

csrutil disable

2. pip安装jupyter

sudo pip install --upgrade pip
sudo pip install jupyter

3. 运行

jupyter notebook

4. UnicodeDecodeError报错解决

cd /usr/local/bin
vim jupyter-notebook
#插入如下代码
reload(sys)
sys.setdefaultencoding('utf-8')
#强制保存退出
:wq!

5. Could not decode'\xe6\x9c\xaa\xe5\x91\xbd\xe5\x90\x8d' ...

LANG=zn jupyter notebook

你可能感兴趣的:(mac安装jupyter记录)