次を使用して memcached をインストールしようとしています。
brew install memcached
これは、homebrew がシンボリック リンクを作成できないというエラーで終了します。
The linking step did not complete successfully
The formula built, but is not symlinked into /usr/local
ヘルプ!
次を使用して memcached をインストールしようとしています。
brew install memcached
これは、homebrew がシンボリック リンクを作成できないというエラーで終了します。
The linking step did not complete successfully
The formula built, but is not symlinked into /usr/local
ヘルプ!
Homebrew がこれまでにインストールしたものをアンインストールしました (libevent 依存関係):
brew uninstall libevent
次に、usr/local ディレクトリを chow-ned します。
sudo chown -R $(whoami) /usr/local
次に、memcached を再度インストールしようとしましたが、うまくいきました。
brew install memcached
あなた自身の質問を更新してくれてありがとう、これは私を大いに助けました。/usr/local
私はすでに管理者グループにいるので、グループに書き込み可能なすべての場所を作成することで、この問題を修正しました。
これを行うには、次のコマンドを使用するだけです
sudo chmod -R g+w /usr/local