jq is a lightweight and flexible command-line JSON processor. jq is like
sed
for JSON data - you can use it to slice and filter and map and transform structured data with the same ease that sed
, awk
, grep
and friends let you play with text.
ivanhoe@ubuntumate-raspberry:~/sw/jq-1.5$ ./configure
configure: error: no acceptable C compiler found in $PATH
Solving
The gcc compiler is not in your
To install gcc use this: (run as root)
The gcc compiler is not in your
$PATH
. It means either you dont have gcc installed or it's not in your $PATH variable.To install gcc use this: (run as root)
- Redhat base:
yum groupinstall "Development Tools"
- Debian base:
apt-get install build-essential
ivanhoe@ubuntumate-raspberry:~/sw/jq-1.5$ sudo apt-get install build-essential
Komentar
Posting Komentar