How to install JQ on Mac by command-line?

前端 未结 5 651
长发绾君心
长发绾君心 2021-01-31 13:09

I need to know the most efficient way of installing JQ on Mac (el capitan). The code is downloaded to my mac but I would like to know how I can install and operate the via the c

5条回答
  •  臣服心动
    2021-01-31 13:34

    You can install any application/packages with brew on mac. If you want to know the exact command just search your package on https://brewinstall.org and you will get the set of commands needed to install that package.

    First open terminal and install brew

    ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null
    

    Now Install jq

    brew install jq
    

提交回复
热议问题