web-dev-qa-db-fra.com

Problème lors de l'installation de jq dans centos

Lors de l'installation de jq on centos, je rencontre un problème. J'ai lancé les commandes suivantes:

yum groupinstall "Development Tools"
yum install autoconf automake libtool python

après cela, j'ai utilisé pip install jq et je faisais face à une erreur comme ceci:

jq.c:8:22: fatal error: pyconfig.h: No such file or directory
#include "pyconfig.h"
                     ^
compilation terminated.
error: command 'gcc' failed with exit status 1

----------------------------------------
Command "/usr/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-akuaZu/jq/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read                                                                                        ().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" 
instal --record /tmp/pip-04CW9h-record/install-record.txt --single-version-externally  
-managed --compile" failed with error code 1 in /tmp/pip-build-akuaZu/jq/

Quelqu'un peut-il m'aider??

14
rishabhjitani

Juste au cas où quelqu'un recherche une solution différente.

Voici comment j'ai installé dans Cent OS 7 et cela a fonctionné. Assurez-vous d’avoir Sudo les privilèges.

Solution d'installation

yum install epel-release -y
yum install jq -y
jq --version

la sortie était jq-1.5

référence

72

Voici comment je l'ai installé sur CentOS 7:

wget https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64 -O jq
chmod +x jq

Ensuite

mv jq /usr/local/bin
9
hmedia1