Jupyter在Homebrew Python更新后报告错误的解释器

2022-03-08 00:00:00 python jupyter ipython homebrew

问题描述

自从使用Homebrew更新我的Python以来

jupyter --version

提供

-bash: /usr/local/bin/jupyter: /usr/local/opt/python/bin/python2.7: bad interpreter: No such file or directory

这有些道理,因为/usr/local/.../python2.7处不再有Python。但我看不出有什么办法可以修复这个。

在更新Python之前,i那里有一个Python,Homebrew的符号链接python指向那里,但现在which -a python提供了

/usr/local/opt/python@2/libexec/bin/python
/usr/local/bin/python
/usr/bin/python

这与我想要的相对应,并且分别是

  • Homebrew的2.7,找到它是因为它位于PATH
  • Homebrew的symlink 3.6.x
  • 苹果的旧Python

我也brew link --overwrite --force python2for good measure,但这没有效果。

如何让jupyter在我的PATH上查找并使用Python 2.7?


解决方案

适合我,只需将jupiter与正确的Python版本链接即可。

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

相关文章