我的苹果电脑才1个月大,我一直在用brew和brew cask安装所有我能做到的东西,以便能够完全卸载不必要的软件。Brew cask list似乎没问题,只列出了我实际安装的库。我已经用brew install安装了大约10个库。为什么我的列表现在是这个样子?如何在不破坏内容的情况下删除不必要的库?
adns gettext lame libgpg-error libtiff mongodb-community openjpeg readline theora yarn
aom giflib leptonica libidn2 libunistring mongodb-community-shell openssl@1.1 ripgrep uchardet z
cairo glib libarchive libksba libusb mujs opus rtmpdump unbound zimg
flac gmp libass libogg libvidstab ncurses p11-kit rubberband vapoursynth zsh
fontconfig gnutls libassuan libpng libvorbis nettle pcre sdl2 webp zsh-completions
freetype graphite2 libbluray libsamplerate libvpx node pcre2 snappy x264 zsh-git-prompt
frei0r harfbuzz libevent libsndfile little-cms2 node@10 pinentry speex x265 zsh-syntax-highlighting
fribidi icu4c libffi libsoxr lua@5.1 npth pixman sqlite xvid
gdbm jpeg libgcrypt libtasn1 lzo opencore-amr python tesseract xz发布于 2020-02-12 18:07:45
一些公式需要或依赖于其他公式。您可以使用以下命令查看formula X依赖的其他公式:
brew deps X您可以使用以下命令查看其他哪些公式需要formula X:
brew uses X --installed您可以使用以下命令查看无人依赖的公式:
brew leaves通常,您可以尝试删除任何公式,因为它不会删除其他内容所需的任何内容,除非您使用:
brew rm --ignore-dependencies ...https://stackoverflow.com/questions/60185354
复制相似问题