Sto cercando di installare Homebrew su OS X 10.8.4, e ottenere quanto segue:
$ ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
==> This script will install:
/usr/local/bin/brew
/usr/local/Library/...
/usr/local/share/man/man1/brew.1
Press ENTER to continue or any other key to abort
==> Downloading and Installing Homebrew...
error: Could not resolve host: (nil); nodename nor servname provided, or not known while accessing https://github.com/mxcl/homebrew/info/refs?service=git-upload-pack
fatal: HTTP request failed
Failed during: git fetch origin master:refs/remotes/origin/master -n
Che cosa sta causando questo problema? Come posso aggirarlo?
Aggiornamento (con le risposte alle domande nel sameetandpotatoes commento) < strong>:
$ curl -Lsf http://github.com/mxcl/homebrew/tarball/master | tar xz --strip 1 -C /usr/local
bin/: Can't update time for bin
share/: Can't update time for share
share/man/: Can't update time for share/man
share/man/man1/: Can't update time for share/man/man1
tar: Error exit delayed from previous errors.
$ ruby --version
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
$ gcc --version
i686-apple-darwin11-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00)
Non ho installato Xcode. Ma ho installato "Command Line Tools (OS X Mountain Lion) per Xcode - Aprile 2013" dal link .
Aggiornamento n. 2:
$ git --version
git version 1.7.12.4 (Apple Git-37)
$ which git
/usr/bin/git
Sembra quindi che non abbia lo stesso problema di questa risposta (di cui sameetandpotatees 's secondo commento sotto).
Aggiornamento n. 3:
Ho scoperto che l'installazione di cui sopra deve avere (almeno parzialmente) installato brew, come nel mio / usr / local / bin /. L'esecuzione di brew
ha richiamato l'aiuto. Ma ho ottenuto il seguente:
$ brew update
Initialized empty Git repository in /usr/local/bin/homebrew/.git/
error: Could not resolve host: (nil); nodename nor servname provided, or not known while accessing https://github.com/mxcl/homebrew.git/info/refs?service=git-upload-pack
fatal: HTTP request failed
Error: Failure while executing: git fetch origin
Ho quindi provato a reinstallarlo utilizzando le istruzioni in questa risposta :
$ pwd
/usr/local/bin
$ mkdir homebrew
$ curl -L https://github.com/mxcl/homebrew/tarball/master | tar xz --strip 1 -C homebrew
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 128 100 128 0 0 191 0 --:--:-- --:--:-- --:--:-- 352
100 938k 100 938k 0 0 256k 0 0:00:03 0:00:03 --:--:-- 334k
$ rm brew
$ ln -s homebrew/bin/brew /usr/local/bin/brew
Ma ottengo quasi lo stesso errore quando provo brew update
:
$ brew update
Initialized empty Git repository in /usr/local/bin/homebrew/.git/
error: Could not resolve host: (nil); nodename nor servname provided, or not known while accessing https://github.com/mxcl/homebrew.git/info/refs?service=git-upload-pack
fatal: HTTP request failed
Error: Failure while executing: git fetch origin
Questo potrebbe essere un problema con la mia installazione o configurazione di git? (Lo uso senza problemi con altri repository remoti.) O potrebbe essere un problema (temporaneo?) Con github.com?
Aggiornamento n. 4: (in risposta alla risposta IOXenus )
Non volevo tenere installato Homebrew in un posto diverso dallo standard / usr / local /, quindi ho cancellato tutte le tracce di Homebrew (incluso /usr/local/.git /).
Poi ho eseguito quanto segue:
$ git init -q
$ git remote set-url origin git://github.com/mxcl/homebrew
fatal: No such remote 'origin'
$ git remote add origin git://github.com/mxcl/homebrew
$ git fetch origin master:refs/remotes/origin/master -n
remote: Counting objects: 124335, done.
remote: Compressing objects: 100% (61076/61076), done.
remote: Total 124335 (delta 87425), reused 96557 (delta 62265)
Receiving objects: 100% (124335/124335), 19.56 MiB | 698 KiB/s, done.
Resolving deltas: 100% (87425/87425), done.
From git://github.com/mxcl/homebrew
* [new branch] master -> origin/master
$ git reset --hard origin/master
HEAD is now at 2a3fc63 tractorgen 0.31.7
E sono stato in grado di eseguire correttamente brew doctor
e brew update
.