Jupyter 从自制软件安装中抛出"bad interpreter"错误



假设:

VS代码编辑器以本机方式安装(无虚拟环境(Mac上的zshpython 3.10

所以,我的问题是,每次我使用:

jupyter notebook

我得到这样一个错误:

zsh: /usr/local/bin/jupyter: bad interpreter: /usr/local/Cellar/jupyterlab/3.2.4/libexec/bin/python3.9: no such file or directory

然而,我正在根据这篇文章以及这篇文章运行这些命令

rm '/usr/local/bin/jupyter'
brew link --overwrite jupyter
brew link --overwrite --dry-run jupyter
brew unlink jupyter && brew link jupyter
brew uninstall jupyter
brew install jupyter
brew link --overwrite jupyter

我甚至尝试编辑JSON文件以指向3.10python版本,但它不起作用。

我想在自制软件中做到这一点,而不是仅仅使用pip3.10或切换到conda环境。有人有什么想法吗?

此时,Homebrew的jupyterlab公式需要Python 3.9。来源:https://formulae.brew.sh/formula/jupyterlab

最终,它将被迁移到Python 3.10。当前正在迁移的公式列表可以在此处找到:https://github.com/Homebrew/homebrew-core/pulls?q=is%3Aopen+是%3Pr+标签%3Python-3-10迁移

相关内容

  • 没有找到相关文章

最新更新