我在 Mac 上安装 Homebrew 时遇到问题。我正在运行 Mac OS X 10.8.4。
当我尝试通过
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
或者:
ruby <(curl -fsSkL raw.github.com/mxcl/homebrew/go)
我得到:
\-bash: curl: command not found
-bash: ruby: command not found
我也试过:
cd /usr/local/bin
mkdir homebrew && curl -L https://github.com/mxcl/homebrew/tarball/master | tar xz --strip 1 -C homebrew
并得到:
-bash: mkdir: command not found
你认为可能有什么问题>