web-dev-qa-db-fra.com

Homebrew ne brassera plus

Sur mon MacMini avec El Capitan, je ne peux plus courir. Je reçois l'erreur suivante:

/usr/local/Library/Homebrew/config.rb:34:in `initialize': no implicit conversion of nil into String (TypeError)
    from /usr/local/Library/Homebrew/config.rb:34:in `new'
    from /usr/local/Library/Homebrew/config.rb:34:in `<top (required)>'
    from /Library/Ruby/Site/2.0.0/rubygems/core_ext/kernel_require.rb:54:in `require'
    from /Library/Ruby/Site/2.0.0/rubygems/core_ext/kernel_require.rb:54:in `require'
    from /usr/local/Library/Homebrew/global.rb:18:in `<top (required)>'
    from /Library/Ruby/Site/2.0.0/rubygems/core_ext/kernel_require.rb:54:in `require'
    from /Library/Ruby/Site/2.0.0/rubygems/core_ext/kernel_require.rb:54:in `require'
    from /usr/local/Library/brew.rb:10:in `<main>'

Les autorisations de/usr/local sont correctes.

Le fichier config.rb, que je n'ai pas modifié, ressemble à ceci:

def cache
  if ENV["HOMEBREW_CACHE"]
    Pathname.new(ENV["HOMEBREW_CACHE"]).expand_path
  else
    # we do this for historic reasons, however the cache *should* be the same
    # directory whichever user is used and whatever instance of brew is executed
    home_cache = Pathname.new("~/Library/Caches/Homebrew").expand_path
    if home_cache.directory? && home_cache.writable_real?
      home_cache
    else
      Pathname.new("/Library/Caches/Homebrew").extend Module.new {
        def mkpath
          unless exist?
            super
            chmod 0775
          end
        end
      }
    end
  end
end

HOMEBREW_CACHE = cache
undef cache

# Where brews installed via URL are cached
HOMEBREW_CACHE_FORMULA = HOMEBREW_CACHE+"Formula"

unless defined? HOMEBREW_BREW_FILE
  HOMEBREW_BREW_FILE = ENV["HOMEBREW_BREW_FILE"] || which("brew").to_s
end

# Where we link under
HOMEBREW_PREFIX = Pathname.new(ENV["HOMEBREW_PREFIX"])

# Where .git is found
HOMEBREW_REPOSITORY = Pathname.new(ENV["HOMEBREW_REPOSITORY"])

HOMEBREW_LIBRARY = Pathname.new(ENV["HOMEBREW_LIBRARY"])
HOMEBREW_CONTRIB = HOMEBREW_REPOSITORY/"Library/Contributions"

# Where we store built products
HOMEBREW_CELLAR = Pathname.new(ENV["HOMEBREW_CELLAR"])

HOMEBREW_LOGS = Pathname.new(ENV["HOMEBREW_LOGS"] || "~/Library/Logs/Homebrew/").expand_path

HOMEBREW_TEMP = Pathname.new(ENV.fetch("HOMEBREW_TEMP", "/tmp"))

unless defined? HOMEBREW_LIBRARY_PATH
  HOMEBREW_LIBRARY_PATH = Pathname.new(__FILE__).realpath.parent.join("Homebrew")
end

HOMEBREW_LOAD_PATH = HOMEBREW_LIBRARY_PATH

La même erreur se produit avec une infusion, un infusion, une mise à jour, etc.

Des idées, ce qui pourrait être le problème?

30
Arwed

J'ai eu le même problème - semblait être le résultat d'une mise à jour de bière qui n'a pas pu se terminer en raison de problèmes d'autorisations. 

D'abord, je réinitialise le dépôt avec la dernière tête:

cd /usr/local/bin
git reset --hard HEAD

Ensuite, je pourrais courir:

brew doctor

Qui a trouvé des problèmes d'autorisations. La réparation de ces autorisations conformément aux instructions m'a enfin permis d'exécuter:

brew update
54
gollyg

OS X gâche les autorisations avec chaque mise à jour.

Essaye ça:

Sudo chown -R $(whoami) /usr/local/share/man/man1

et

Sudo chown -R $(whoami) /usr/local/share/man

et assurez-vous que l'utilisateur actuel (celui qui exécute brew) est autorisé à accéder à /usr/local

5
Pouria

J'ai remplacé le script/usr/local/bin/brew par la nouvelle version trouvée sur github. Maintenant tout va bien à nouveau. 

Le dernier fichier, dont on peut trouver ici: https://github.com/Homebrew/homebrew/blob/master/bin/brew

2
Arwed

J'ai remplacé le script/usr/local/bin/brew par la nouvelle version trouvée sur github. Maintenant tout va bien à nouveau.

Le dernier fichier, dont, peut être trouvé ici: https://github.com/Homebrew/homebrew/blob/master/bin/brew

0
jie

Un peu sale mais je viens de désinstaller homebrew et de le réinstaller. AVERTISSEMENT: Ceci désinstallera tous les paquets installés par Brew.

$ Ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"
$ Sudo chown -R $USER /usr/local/
$ Ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
0
lwelna