详细参考:https://blog.csdn.net/weixin_42782150/article/details/102921697
pip3 install --user jupyter
安装失败,提示:
WARNING: pip is being invoked by an old script wrapper. This will fail in a future version of pip.
解决:
python3 -m pip install --user jupyter
(这里是pip,安装其他python库均使用pip3)
打开jupyter
python3 -m IPython notebook
另外,由于是Big sur系统,使用brew install Jupyter安装也会失败,暂时不知道解决办法,所以只能pip安装。
升级pip3:
pip3 install --user --upgrade pip