facebook twitter hatena line email

Mac/インストール/パッケージ管理

提供: 初心者エンジニアの簡易メモ
2016年10月4日 (火) 14:07時点におけるAdmin (トーク | 投稿記録)による版 (homebrewインストール)

移動: 案内検索

homebrewインストール

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew -v

homebrewアップデート

brew update

フォーミュラー(パッケージ)操作(サンプルにgitを使用

brew install git
brew uninstall git
brew info git
brew list -version

homebrewの読み方

ホームビュー

インストールできない

以下のようなエラーが出る場合

command not found  brew

mac/インストール/xcode [ショートカット] からコマンドラインツールをインストールする

環境パス順序変更

実行ファイルのシンボリックが/usr/local/binの下にできるので、そのパスを最優先するようパスの順序をかえておく。

$ sudo vi /etc/paths
/usr/local/bin
/usr/sbin

確認

$ echo $PATH
/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin