0

これは私が日常的に行うことではないことを私は知っています。しかし、これは本当に奇妙です。以下を使用してHomebrewをインストールしました: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... remote: Finding bitmap roots... remote: Counting objects: 132404, done. remote: Compressing
> objects: 100% (43037/43037), done. remote: Total 132404 (delta 91508),
> reused 129108 (delta 88342) Receiving objects: 100% (132404/132404),
> 31.72 MiB | 2.51 MiB/s, done. Resolving deltas: 100% (91508/91508), done. From https://github.com/mxcl/homebrew  * [new branch]     
> master     -> origin/master HEAD is now at 27cc45c rhash 1.3.0
> Warning: /usr/local/bin is not in your PATH.
> ==> Installation successful! You should run `brew doctor' *before* you install anything. Now type: brew help

"

あなたは実際にこれがそれをインストールすると思うでしょう. しかし、私はそうしbrew doctor、これが応答です:

brew help -bash: brew: コマンドが見つかりません

4

1 に答える 1

0

以下をシェル構成ファイル (つまり ~/.bashrc または ~/.zshrc) に追加します。

export PATH=/usr/local/bin:/usr/local/sbin:$PATH

新しい端末セッションを開始すると、うまくいくはずです。

于 2013-10-17T06:48:27.223 に答える