facebook twitter hatena line email

「Mac/インストール/パッケージ管理」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(インストールできない)
行17: 行17:
 
==インストールできない==
 
==インストールできない==
 
以下のようなエラーが出る場合  
 
以下のようなエラーが出る場合  
  command not found brew
+
  command not found brew
 
[[mac/インストール/xcode]] [ショートカット] からコマンドラインツールをインストールする
 
[[mac/インストール/xcode]] [ショートカット] からコマンドラインツールをインストールする
  

2017年1月6日 (金) 14:38時点における版

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