为什么 jupyter notebook 无法启动?

为什么 jupyter notebook 无法启动?

我通过 macOS 控制台安装了 jupiter notebook:

pip3 install notebook

但是当尝试启动(jupyter notebook/Jupyter notebook)时,控制台写道未找到该命令:

zsh: command not found: jupyter

如何修复?我应该检查哪些设置? macOS Monterey python 3.9 .bash_profile 包含:PATH="/Library/Frameworks/Python.framework/Versions/3.9/bin:${PATH}" 导出 PATH

答案1

不要惊慌,建议使用康达 备忘单保持系统环境清洁

创建环境

conda create -n your_jupyter_env python pip jupyter --yes

删除环境

conda remove -n your_jupyter_env --all --yes

相关内容