输入 'brew doctor' 后收到错误
Received error after entering 'brew doctor'
我是编程新手,这个问题可能看起来很简单...所以请多多包涵。
在终端中输入 'brew doctor' 后,我没有提示类似 'Your system is ready to brew' 的内容,而是得到了以下信息:
Please note that these warnings are just used to help the Homebrew maintainers
with debugging if you file an issue. If everything you use Homebrew for is
working fine: please don't worry or file an issue; just ignore this. Thanks!
Warning: "config" scripts exist outside your system or Homebrew directories.
`./configure` scripts often look for *-config scripts to determine if
software packages are installed, and which additional flags to use when
compiling and linking.
Having additional scripts in your path can confuse software installed via
Homebrew if the config script overrides a system or Homebrew-provided
script of the same name. We found the following "config" scripts:
/Library/Frameworks/Python.framework/Versions/3.8/bin/python3-config
/Library/Frameworks/Python.framework/Versions/3.8/bin/python3.8-config
/Library/Frameworks/Python.framework/Versions/3.6/bin/python3.6m-config
/Library/Frameworks/Python.framework/Versions/3.6/bin/python3-config
/Library/Frameworks/Python.framework/Versions/3.6/bin/python3.6-config
根据我的肤浅理解,我是应该删除python版本中的一个版本还是保留两个版本并输入另一个命令来解决此问题?提前致谢!
Homebrew 告诉您 5 个文件:
/Library/Frameworks/Python.framework/Versions/3.8/bin/python3-config
/Library/Frameworks/Python.framework/Versions/3.8/bin/python3.8-config
/Library/Frameworks/Python.framework/Versions/3.6/bin/python3.6m-config
/Library/Frameworks/Python.framework/Versions/3.6/bin/python3-config
/Library/Frameworks/Python.framework/Versions/3.6/bin/python3.6-config
不是 Homebrew 安装的,可能会混淆他。如果你不使用 Homebrew 之外安装的 Python 版本,你可以删除这些文件并且 brew doctor
命令应该再次显示:
Your system is ready to brew.
我是编程新手,这个问题可能看起来很简单...所以请多多包涵。
在终端中输入 'brew doctor' 后,我没有提示类似 'Your system is ready to brew' 的内容,而是得到了以下信息:
Please note that these warnings are just used to help the Homebrew maintainers
with debugging if you file an issue. If everything you use Homebrew for is
working fine: please don't worry or file an issue; just ignore this. Thanks!
Warning: "config" scripts exist outside your system or Homebrew directories.
`./configure` scripts often look for *-config scripts to determine if
software packages are installed, and which additional flags to use when
compiling and linking.
Having additional scripts in your path can confuse software installed via
Homebrew if the config script overrides a system or Homebrew-provided
script of the same name. We found the following "config" scripts:
/Library/Frameworks/Python.framework/Versions/3.8/bin/python3-config
/Library/Frameworks/Python.framework/Versions/3.8/bin/python3.8-config
/Library/Frameworks/Python.framework/Versions/3.6/bin/python3.6m-config
/Library/Frameworks/Python.framework/Versions/3.6/bin/python3-config
/Library/Frameworks/Python.framework/Versions/3.6/bin/python3.6-config
根据我的肤浅理解,我是应该删除python版本中的一个版本还是保留两个版本并输入另一个命令来解决此问题?提前致谢!
Homebrew 告诉您 5 个文件:
/Library/Frameworks/Python.framework/Versions/3.8/bin/python3-config
/Library/Frameworks/Python.framework/Versions/3.8/bin/python3.8-config
/Library/Frameworks/Python.framework/Versions/3.6/bin/python3.6m-config
/Library/Frameworks/Python.framework/Versions/3.6/bin/python3-config
/Library/Frameworks/Python.framework/Versions/3.6/bin/python3.6-config
不是 Homebrew 安装的,可能会混淆他。如果你不使用 Homebrew 之外安装的 Python 版本,你可以删除这些文件并且 brew doctor
命令应该再次显示:
Your system is ready to brew.