brew Doctor issues warnings after installing MAMP:
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 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:
/Applications/MAMP/Library/bin/curl-config
/Applications/MAMP/Library/bin/freetype-config
/Applications/MAMP/Library/bin/libmcrypt-config
/Applications/MAMP/Library/bin/libpng-config
/Applications/MAMP/Library/bin/libpng15-config
/Applications/MAMP/Library/bin/sablot-config
/Applications/MAMP/Library/bin/xml2-config
/Applications/MAMP/Library/bin/xslt-config
/Applications/MAMP/Library/bin/yaz-config
Warning: Some directories in your path end in a slash.
Directories in your path should not end in a slash. This can break other
doctor checks. The following directories should be edited:
/Applications/MAMP/Library/bin/
echo $ PATH:
/usr/local/bin:/usr/local/bin:/usr/local/sbin:~/bin:/Library/Frameworks/Python.framework/Versions/Current/bin:/usr/local/bin:/usr/local/sbin:~/bin:/usr/local/bin:/usr/local/sbin:~/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/X11/bin:/usr/local/mysql/bin:/Applications/MAMP/Library/bin/
My ~ / .bashrc file is empty, and my ~ / .bash_profile file looks like this:
export PATH="/usr/local/bin:/usr/local/sbin:~/bin:$PATH"
export PATH="/usr/local/bin:/usr/local/sbin:~/bin:$PATH"
PATH="/Library/Frameworks/Python.framework/Versions/Current/bin:${PATH}"
export PATH
export PATH="/usr/local/bin:/usr/local/sbin:~/bin:$PATH"
export ARCHFLAGS="-arch x86_64"
export PATH=/usr/local/bin:$PATH
test -f ~/.bashrc && source ~/.bashrc
export VIRTUALENV_DISTRIBUTE=true
export PIP_VIRTUALENV_BASE=$HOME/.virtualenvs
export PIP_REQUIRE_VIRTUALENV=true
export PIP_DOWNLOAD_CACHE=$HOME/.pip/cache
I do not see "/ Applications / MAMP / Library / bin /" in my ~ / .bash_profile file, but echo $ PATH has it at the end. Removes "/ Applications / MAMP / Library / bin /" from $ PATH to get rid of brew doctor warnings? How to remove it and it will cause problems with my MAMP or localhost?
Thank!
source
share