jupyter notebook的字体太小,于是我打算安装jupyterthemes解决这个问题,但安装过程中发现了很多问题:
1. 安装速度极慢,使用清华的源即可解决:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple jupyterthemes
2. ...has requirement six=1.9.0,but you will have six 1.5.2 which is incompatible,重新安装six即可解决:
sudo pip install six --upgrade --ignore-installed six
3. [Errno 1] Operation not permitted,这是由于MacOS使用SIP机制限制对系统目录的写操作,将其关闭即可:重启电脑,当出现苹果标志,按command + R进入Recovery Mode(恢复模式),然后进入终端,输入:
csrutil disable
然后再次重启。之后在终端可以查看SIP是否开启:
csrutil status
如果想要再次开启,重复上述步骤,在恢复模式的终端输入:
csrutil enable
4. 之后就可以使用命令完美安装jupyterthemes了:
sudo pip install -i https://pypi.tuna.tsinghua.edu.cn/simple jupyterthemes