terminal
1$ brew doctor 2Please note that these warnings are just used to help the Homebrew maintainers 3with debugging if you file an issue. If everything you use Homebrew for is 4working fine: please don't worry or file an issue; just ignore this. Thanks! 5 6Warning: "config" scripts exist outside your system or Homebrew directories. 7`./configure` scripts often look for *-config scripts to determine if 8software packages are installed, and which additional flags to use when 9compiling and linking. 10 11Having additional scripts in your path can confuse software installed via 12Homebrew if the config script overrides a system or Homebrew-provided 13script of the same name. We found the following "config" scripts: 14 /Library/Frameworks/Python.framework/Versions/3.7/bin/python3.7-config 15 /Library/Frameworks/Python.framework/Versions/3.7/bin/python3.7m-config 16 /Library/Frameworks/Python.framework/Versions/3.7/bin/python3-config
と出ます.
.bash_profile に
alias brew='PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin brew'
と書くことで対処できるとネットにいくつか記事があります.
下記サイトの通りに変更する.
https://qiita.com/yutoman027/items/ae11bf22bdbcd645c92a
しかし,上記の一文を加えて,.bash_profile内を
if [ -f ~/.bashrc ] ; then . ~/.bashrc fi alias brew='PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin brew'
としても,$ brew doctor に変化がありません.
このエラーの対処方法を知っている方いますか?
brew 以外で入れた python があるってことですよね。警告なので、特に問題が出てなければ気にしなくても良いのでは…。
使ってるシェルはbashですか?
もしzshなら、設定するファイルが違います
参考
https://bure.undo.jp/2020/06/15/post-405/
https://gallard316.hatenablog.com/entry/2020/11/24/185634
brew以外で入れたPythonあります.
シェル
$ echo $SHELL
/bin/sh
macのアップデートで
bash-3.2$
みたいな表示に変わって気持ち悪かったので,変えたのかもしれないです(あんまり記憶にない).
aliasがちゃんと設定されてるか、確認してみてください
http://dqn.sakusakutto.jp/2012/12/zsh_bash_alias.html
回答1件
あなたの回答
tips
プレビュー