Homebrew를 깨끗하게 제거하는 방법


24

Homebrew를 깨끗하게 제거하려면 어떻게해야합니까? 오래된 설치에 결함이있을 수 있으며 새로 시작하고 싶습니다.


1
또한 superuser.com/questions/203707/… 을 참조하십시오. homebrew를 제거하는 "현재 표준"방법을 설명하는 답변이 있습니다
rogerdpack

@rogerdpack 댓글은 언제든지 삭제 될 수 있습니다. 새로운 방법을 설명하는 답변을 게시 해 주시겠습니까?
nohillside

답변:


17

이것은 rm -rf당신이 삭제할 때 확신하는 경우 요청, 그렇게되지 않습니다 확인 cd명령은 / tmp를 밖으로 얻을 작동 합니다 (이 cd /tmp경우에는 안전한 장소에 당신을 얻을 당신이 파일을 삭제하지 않도록 당신이 / 한 번에 모든 것을 붙여 복사 현재 디렉토리에서)

터미널에서 이것을 시도하십시오 :

cd /tmp
cd `brew --prefix`
rm -rf Cellar
brew prune
rm `git ls-files`
rm -r Library/Homebrew Library/Aliases Library/Formula Library/Contributions
rm -rf .git
rm -rf ~/Library/Caches/Homebrew

이 주제에 대한 자세한 정보는 Homebrew FAQ 에서 찾을 수 있습니다 .


1
나는이 있는지 확인 할 cd `brew --prefix`오래된 / 고장 설치가 실패 할 수 있습니다 및 삭제가 이후 정상 자식 파일에서 확인이없는 폴더로 이동 git ls-files하여 양조의 유물이 아닌 다른 뭔가를 삭제할 수 있습니다.
bmike

나는 문서를 읽었으며, 나중에 참조를 요청하는 데 유용한 질문 일 수 있다고 생각했습니다. 지침에 문제가 있지만 별도의 질문으로 게시했습니다. apple.stackexchange.com/questions/82863/…
ipavlic

브루 자주 묻는 질문에 대한 링크가 업데이트 될해야합니다 github.com/mxcl/homebrew/wiki/FAQ/...github.com/Homebrew/homebrew/blob/master/share/doc/homebrew/... 난 못해 ( 의견 수정 또는 추가).
cloudnthings

1
: 이제위한 스크립트 거기 github.com/Homebrew/brew/blob/master/docs/FAQ.md
larkey

5

HomeBrew 설치는 첫 페이지에 눈에 잘 띄지 만 자세한 내용은 없습니다. https://brew.sh/ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 오랫동안 안정적인 설치 제거를 찾기가 매우 어려웠습니다. 이제 문서에서 몇 번의 클릭으로 공식적인 방법이 있습니다. https://docs.brew.sh/FAQ Homebrew를 제거하려면 아래 명령을 터미널 프롬프트에 붙여 넣으십시오. ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"


3

다음은 Homebrew를 제거하는 훨씬 더 나은 솔루션입니다. https://gist.github.com/SteveBenner/11254428

#!/usr/bin/env ruby
#
# Locates and removes Homebrew installation
# http://brew.sh/
#
# Author: Stephen Benner
# https://github.com/SteveBenner
#
require 'optparse'
require 'fileutils'
require 'open3'

$stdout.sync = true

# Default options
options = {
  :quiet     => false,
  :verbose   => true,
  :dry_run   => false,
  :force     => false,
  :find_path => false
}

optparser = OptionParser.new do |opts|
  opts.on('-q', '--quiet', 'Quiet mode - suppress output.') do |setting|
    options[:quiet]   = setting
    options[:verbose] = false
  end
  opts.on('-v', '--verbose', 'Verbose mode - print all operations.') { |setting| options[:verbose] = setting }
  opts.on('-d', '--dry', 'Dry run - print results, but perform no actual operations.') do |setting|
    options[:dry_run] = setting
  end
  opts.on('-f', '--force', 'Forces removal of files, bypassing prompt. USE WITH CAUTION.') do |setting|
    options[:force] = setting
  end
  opts.on('-p', '--find-path', 'Output homebrew location if found, then exit.') do |setting|
    options[:find_path] = setting
    options[:quiet]     = true
  end
  opts.on('-h', '--help', '--usage', 'Display usage info and quit.') { puts opts; exit }
end
optparser.parse!
$quiet = options[:quiet] # provides access to option value within methods

# Files installed into the Homebrew repository
BREW_LOCAL_FILES = %w[
  .git
  Cellar
  Library/brew.rb
  Library/Homebrew
  Library/Aliases
  Library/Formula
  Library/Contributions
  Library/LinkedKegs
]
# Files that Homebrew installs into other system locations
BREW_SYSTEM_FILES = %W[
  #{ENV['HOME']}/Library/Caches/Homebrew
  #{ENV['HOME']}/Library/Logs/Homebrew
  /Library/Caches/Homebrew
]
$files = []

# This function runs given command in a sub-shell, expecting the output to be the
# path of a Homebrew installation. If given a block, it passes the shell output to
# the block for processing, using the return value of the block as the new path.
# Known Homebrew files are then scanned for and added to the file list. Then the
# directory is tested for a Homebrew installation, and the git index is added if
# a valid repo is found. The function won't run once a Homebrew installation is
# found, but it will accumulate untracked Homebrew files each invocation.
#
# @param  [String] cmd       a shell command to run
# @param  [String] error_msg message to print if command fails
#
def locate_brew_path(cmd, error_msg = 'check homebrew installation and PATH.')
  return if $brew_location # stop testing if we find a valid Homebrew installation
  puts "Searching for homewbrew installation using '#{cmd}'..." unless $quiet

  # Run given shell command along with any code passed-in via block
  path = `#{cmd}`.chomp
  path = yield(path) if block_given? # pass command output to your own fancy code block

  begin
    Dir.chdir(path) do
      # Search for known Homebrew files and folders, regardless of git presence
      $files += BREW_LOCAL_FILES.select { |file| File.exist? file }.map {|file| File.expand_path file }
      $files += Dir.glob('**/{man,bin}/**/brew*')
      # Test for Homebrew git repository (use popen3 so we can suppress git error output)
      repo_name = Open3.popen3('git remote -v') do |stdin, stdout, stderr|
        stderr.close
        stdout.read
      end
      if repo_name =~ /homebrew.git|Homebrew/
        $brew_location = path
      else
        return
      end
    end
  rescue StandardError # on normal errors, continue program
    return
  end
end

# Attempt to locate homebrew installation using a command and optional code block
# for processing the command results. Locating a valid path halts searching.
locate_brew_path 'brew --prefix'
locate_brew_path('which brew') { |output| File.expand_path('../..', output) }
locate_brew_path 'brew --prefix' do |output|
  output = output.split($/).first
  File.expand_path('../..', output)
end

# Found Homebrew installation
if $brew_location
  puts "Homebrew found at: #{$brew_location}" unless options[:quiet]
  if options[:find_path]
    puts $brew_location
    exit
  end
  # Collect files indexed by git
  begin
    Dir.chdir($brew_location) do
      # Update file list (use popen3 so we can suppress git error output)
      Open3.popen3('git checkout master') { |stdin, stdout, stderr| stderr.close }
      $files += `git ls-files`.split.map {|file| File.expand_path file }
    end
  rescue StandardError => e
    puts e # Report any errors, but continue the script and collect any last files
  end
end

# Collect any files Homebrew may have installed throughout our system
$files += BREW_SYSTEM_FILES.select { |file| File.exist? file }

abort 'Failed to locate any homebrew files!' if $files.empty?

# DESTROY! DESTROY! DESTROY!
unless options[:force]
  print "Delete #{$files.count} files? "
  abort unless gets.rstrip =~ /y|yes/i
end

rm =
  if options[:dry_run]
    lambda { |entry| puts "deleting #{entry}" unless options[:quiet] }
  else
    lambda { |entry| FileUtils.rm_rf(entry, :verbose => options[:verbose]) }
  end

puts 'Deleting files...' unless options[:quiet]
$files.each(&rm)

1
다른 질문에 오신 것을 환영합니다! 제공 한 링크가 질문에 대한 답변을 제공 할 수 있지만 여기에 답변을 포함하고 참조 용 링크를 제공하는 것이 좋습니다. 링크 된 페이지가 변경되면 링크 전용 답변이 유효하지 않을 수 있습니다. 귀하가 언급 한 솔루션이라고 생각하는 것을 포함하도록 귀하의 질문을 편집했지만, 그렇지 않은 경우 관련 섹션을 인용하십시오. 또한 솔루션이 더 나은 이유 를 확장 할 수 있습니까?
grg

1
그것은 몇 줄 이상이므로 코드를 포함시키는 것이 번거로울 것이라고 생각했지만 앞으로는 기쁠 것입니다. 내 스크립트가 제거 할 게시 된 답변에 잡히지 않은 파일과 디렉토리가 있기 때문에 더 좋습니다. CLI 옵션을 통해 사용자에게 유틸리티를 제공하고 추출 위치를보다 철저하게 검색하며 스크립트를 개선하려는 경우 쉽게 수정할 수 있도록 코딩되어 있습니다.
Steve Benner
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.