Mac M1 使用conda安装jupyter notebook

我之前配置时使用的miniconda
(1)打开终端
在终端依次输入:
(2)conda install jupyter
(3)pip install jupyter_contrib_nbextensions
(4)jupyter contrib nbextension install --user
(5)pip install jupyter_nbextensions_configurator
(6)jupyter nbextensions_configurator enable --user
(7)jupyter notebook
我在执行到第(2)步的时候,总是显示zsh:command not found jupyter。
经过各种尝试,试过用pip安装进行安装的文件夹并启动notebook,但还是出错。
想起来用conda的时候显示了错误:
RemoveError: ‘setuptools’ is a dependency of conda and cannot be removed from
,试过网上说的更新conda但对我来说并没有用,可以尝试一下方法:
conda update --force conda

参考:
【1】https://www.cnblogs.com/zolmk/p/15860668.html
【2】https://www.cnblogs.com/hellojiaojiao/p/10872421.html

你可能感兴趣的:(python)