Ich habe gerade das Homebrew-Skript ausgeführt, wie auf der Installationsseite beschrieben. Ich lief dann brew doctor
im Terminal, und es gab mehrere Fehler zurück. Ich bin nicht sicher, wie ich diese Fehler beheben soll, bitte helfen Sie.
brew doctor
Error: Some directories in /usr/local/share/man aren't writable.
This can happen if you "sudo make install" software that isn't managed
by Homebrew. If a brew tries to add locale information to one of these
directories, then the install will fail during the link step.
You should probably `chown` them:
/usr/local/share/man/de
/usr/local/share/man/de/man1
Error: You have Xcode 4.2, which is outdated.
Please install Xcode 4.3.
Error: Unbrewed dylibs were found in /usr/local/lib.
If you didn't put them there on purpose they could cause problems when
building Homebrew formulae, and may need to be deleted.
Unexpected dylibs:
/usr/local/lib/libcdt.5.dylib /usr/local/lib/libcgraph.6.dylib /usr/local/lib/libgraph.5.dylib /usr/local/lib/libgvc.6.dylib /usr/local/lib/libgvpr.2.dylib /usr/local/lib/libpathplan.4.dylib /usr/local/lib/libxdot.4.dylib
Error: Unbrewed .pc files were found in /usr/local/lib/pkgconfig.
If you didn't put them there on purpose they could cause problems when
building Homebrew formulae, and may need to be deleted.
Unexpected .pc files:
/usr/local/lib/pkgconfig/libcdt.pc /usr/local/lib/pkgconfig/libcgraph.pc /usr/local/lib/pkgconfig/libgraph.pc /usr/local/lib/pkgconfig/libgvc.pc /usr/local/lib/pkgconfig/libgvpr.pc /usr/local/lib/pkgconfig/libpathplan.pc /usr/local/lib/pkgconfig/libxdot.pc
Error: /usr/bin occurs before /usr/local/bin
This means that system-provided programs will be used instead of those
provided by Homebrew. The following tools exist at both paths:
2to3
Consider amending your PATH so that /usr/local/bin
is ahead of /usr/bin in your PATH.
brew doctor
Fehler ignorieren , außer wenn Sie etwas wirklich nicht installieren können.Auf jeden Fall diese Dylibs und PCs sichern. Wenn sie nicht in der Nähe sind, bricht die Grafik (insbesondere die Python-Bindungen). Kopieren Sie sie zurück in ihre Verzeichnisse, sobald Sie fertig sind.
Wenn Sie vergessen, sie zu sichern, und graphiz nicht mehr mit "Bild nicht gefunden" -Fehlern in Bibliotheken arbeitet, installieren Sie einfach die graphviz-Anwendung von der Website ( http://www.graphviz.org/Download_macos.php ) neu.
Es scheint, als würde der Name des Spiels diese speziellen Warnungen des Braudoktors ignorieren.
quelle
Ich würde die
.dylib
Dateien hier auf "weiße Liste" setzen :nano +128 /usr/local/Library/Homebrew/cmd/doctor.rb
Hinzufügen:
und die
.pc
Dateien hier:nano +163 /usr/local/Library/Homebrew/cmd/doctor.rb
quelle