web-dev-qa-db-fra.com

Impossible d'installer correctement les formules Brew (autorisation refusée dans / usr / local / lib)

J'installe quelques paquets Homebrew sur un tout nouveau Mac. Cependant, il y a des erreurs lors de la liaison:

ln: ./libsvn_wc-1.dylib: Permission denied
Error: The linking step did not complete successfully
The package built, but is not symlinked into /usr/local
You can try again using `brew link Subversion'
Error: Could not create symlink /usr/local/lib/libsvn_wc-1.dylib.
Check that you have permssions on /usr/local/lib
==> Summary
/usr/local/Cellar/Subversion/1.6.15: 88 files, 6.0M, built in 38 seconds

Donc SVN n'est pas vraiment installé correctement, comme on peut le voir ici:

charon:~ werner$ which svn
/usr/bin/svn

Même erreur pour Git:

charon:~ werner$ brew link git
Error: Permission denied - /usr/local/lib/python2.6

Cependant, celui-ci est installé correctement:

charon:~ werner$ which git
/usr/local/bin/git

Devrais-je juste chmod le répertoire lib ou y at-il autre chose que je devrais faire de préférence?

charon:~ werner$ ls -l /usr/local/
total 8
drwxr-xr-x   7 werner  staff   238 Mar  8 15:58 Cellar
drwxr-xr-x   6 werner  staff   204 Mar  8 14:21 Library
-rw-r--r--   1 werner  staff  1614 Mar  8 14:21 README.md
drwxr-xr-x  56 werner  staff  1904 Mar  8 15:59 bin
drwxr-xr-x   4 werner  staff   136 Mar  8 15:46 etc
drwxr-xr-x   3 werner  staff   102 Mar  8 15:59 include
drwxr-xr-x   3 root    wheel   102 Apr 17  2010 lib
drwxr-xr-x  12 werner  staff   408 Mar  8 15:57 share
drwxr-xr-x   4 root    wheel   136 Mar  8 14:43 texlive
52
slhck

Au moment de la rédaction, Homebrew exige que le contenu de/usr/local soit corrigé sous votre nom d'utilisateur. Cela ne semble pas être une bonne solution, mais cela fonctionne et constitue de toute évidence l'utilisation recommandée. Voir: https://github.com/mxcl/homebrew/issues/9953#issuecomment-3800557

Tu peux faire:

Sudo chown -R `whoami` /usr/local
102
T3db0t