경고 : 양조되지 않은 dylib는 / usr / local / lib에 있습니다. 명령을 입력하면 아래

brew doctor 명령을 입력하면 아래 오류가 발생합니다. 이것에 대해 걱정해야합니까?

커맨드 라인에 익숙하지 않습니다. Homebrew를 사용하여 Drush (Drupal 용)를 설치합니다.

Last login: Wed Oct  9 14:59:40 on ttys001
unknown:~ MY-USERNAME$ brew doctor
Warning: 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/libTrAPI.dylib


답변

이러한 파일은 하나의 경우에만 이전 설치의 잔여 파일입니다. 걱정할 것이 없습니다.

다음을 사용하여 쉽게 제거 할 수 있습니다.

rm /usr/local/lib/libTrAPI.dylib

답변

libTrAPI.dylib는 VPN 소프트웨어 용입니다. VPN을 계속 사용하려면 삭제하지 말고 doctor.rb의 화이트리스트에 추가하면 homebrew가 이에 대해 불평하지 않습니다.

doctor.rb를 찾으려면 간단히 실행하십시오.

locate doctor.rb

white_list를 찾으십시오. 제 105 행에 있습니다. 아마도 다음과 같아야합니다.

white_list = {
  "libfuse.2.dylib" => "MacFuse",
  "libfuse_ino64.2.dylib" => "MacFuse",
  "/usr/local/lib/libTrAPI.dylib" => "TrAPI"
}