json - online - Actualizando jq a 1.5 en Ubuntu
online jq (3)
Así que se lee here :
jq 1.5 está en los repositorios oficiales de Debian y Ubuntu. Instalar usando sudo apt-get install jq.
todavía:
$ sudo apt-get install jq
Reading package lists... Done
Building dependency tree
Reading state information... Done
jq is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
Y:
$ jq --version
jq version 1.3
Description: Ubuntu 14.04 LTS
Release: 14.04
Codename: trusty
¿Qué me estoy perdiendo?
Gracias
Creo que te estaba perdiendo el repositorio correcto: http://installion.co.uk/ubuntu/vivid/universe/j/jq/install/index.html
Estás usando Ubuntu LTS. La última versión de Ubuntu tiene jq 1.5.
Terminé aquí cuando busqué en Google por qué mi instancia de Debian 8 no actualiza jq
1.4 a 1.5.
Aquí está mi solución para cualquiera que tenga problemas con Debian 8 jq: descargue jq
desde https://github.com/stedolan/jq/releases y cópielo manualmente sobre el jq instalado actualmente. En mi caso:
wget https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64
chmod +x jq-linux64
sudo mv jq-linux64 $(which jq)