LoginSignup
147
116

More than 5 years have passed since last update.

jq コマンドの Linux への速攻インストール

Last updated at Posted at 2014-08-31

CHANGES

  1. もうパッケージで簡単に入るからパッケージで入れればいいと思うよ
  2. jq 1.5 に対応

やりかた

パッケージ

CentOS 7

sudo yum -y install epel-release
sudo yum -y install jq

Ubuntu 16.04(たぶん 18.04 も同じでは)

sudo apt -y update
sudo apt -y install jq

手動

localがお好き

sudo curl -o /usr/local/bin/jq -L https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64 && sudo chmod +x /usr/local/bin/jq

localがおきらい

sudo curl -o /usr/bin/jq -L https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64 && sudo chmod +x /usr/bin/jq

俺は Raspberry Pi (Raspbian) に入れたいんだ

Raspberry Pi(Raspbian) に jq コマンドをインストールしてみた | Beyond Future Yak Shaving

147
116
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
147
116