web-dev-qa-db-ja.com

CentOSにjqをインストールする際の問題に直面

CentOSにjqをインストールしているときに、問題が発生しています。次のコマンドを実行しました。

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

その後、私はpip install jqと私はこのようなエラーに直面していた:

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/

誰も私を助けることができますか??

14
rishabhjitani

誰かが別のソリューションを探している場合に備えて。

これが私がCent OS 7にインストールした方法で、動作しました。 Sudo特権があることを確認してください。

インストーラーソリューション

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

出力はjq-1.5

参照

72

これは私がCentOS 7にインストールした方法です:

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

それから

mv jq /usr/local/bin
9
hmedia1