Obecnie używam pyenv
i pyenv-virtualenv
, które zainstalowałem przez Homebrew
. Dodałem, if which pyenv > /dev/null; then eval "$(pyenv init -)"; fi
aby włączyć podkładki i autouzupełnianie oraz if which pyenv-virtualenv-init > /dev/null; then eval "$(pyenv virtualenv- init -)"; fi
w celu umożliwienia automatycznej aktywacji mojej .bash_profile
.
Nagle, uruchomiony brew doctor
, pojawia się następujący komunikat:
"config" scripts exist outside your system or Homebrew directories.
`./configure` scripts often look for *-config scripts to determine if
software packages are installed, and what 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:
/usr/local/var/pyenv/shims/python-config
/usr/local/var/pyenv/shims/python2-config
/usr/local/var/pyenv/shims/python2.7-config
Co powinienem zrobić, aby rozwiązać problem?
brew upgrade pyenv
?