mac osx下homebrewインストール


オープンソースのものが多く、アップルにはインストールソースがなく、homebrewを使ってインストールを管理できるので、osxの下でhomebrewをインストールするのは便利です.記録する.
  • バージョン
  • を表示
    ruby -version
    
    ruby 2.0.0p648 (2015-12-16 revision 53162) [universal.x86_64-darwin16]
    -e:1:in `
    ': undefined local variable or method `rsion' for main:Object (NameError)

    2.homebrewのインストール
    ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

    エラーが表示された場合、エラーが発生しました./usr/local/cellar is not writable.You should change the ownership and permissions of/usr/local/cellar back to your user account:次のコマンドラインを入力
    sudo chown -R $(whoami) /usr/local/Cellar

    インストールを続行上のインストールコマンドを入力します
    3.インストールに成功したかどうかを確認する
    brew

    インストールに成功すると、次のコマンドExample usage:brew search[TEXT|/REGEX/]brew(info|home|options)[FORMULA...]brew install FORMULA...brew update brew upgrade[FORMULA...]brew uninstall FORMULA...brew list[FORMULA...]
    Troubleshooting: brew config brew doctor brew install -vd FORMULA
    Developers: brew create [URL [–no-fetch]] brew edit [FORMULA…] https://docs.brew.sh/Formula-Cookbook.html
    Further help: man brew brew help [COMMAND] brew home
    4.brewを使用してnodeをインストールする
    brew install node

    Error:The brew link step did not complete successfully The formula built,but is not symlinked into/usr/local Could not symlink./usr/local/opt is not writable.
    権限を更新してからリンクします
    sudo chown -R $(whoami) /usr/local
    brew link node

    ios-deployのインストール
    npm install -g ios-deploy

    インストールエラーが発生した場合はdyld:Library not loaded:/usr/local/opt/icu 4 c/lib/libicui 18 n.58.dylib Referenced from:/usr/local/bin/node Reason:image not found Abort trap:6 icu 4 cをインストールし、linkします
    brew install icu4c
    brew link icu4c

    5 brewその他のコマンド
    brew list                   
    
    brew update       brew
    
    brew home             brew     
    
    brew info               
    
    brew deps