git bash: jq: command not found
时间: 2023-10-27 12:05:46 浏览: 165
gitbash:更好的git使用bash设置
在git bash中出现"jq: command not found"的错误提示,这是因为系统中没有安装jq命令所致。可以通过以下步骤来解决这个问题:
1. 在https://stedolan.github.io/jq/下载jq的二进制文件。
2. 将下载的二进制文件移动到/usr/bin目录下。
3. 在git bash中运行"chmod +x /usr/bin/jq"命令,给jq文件添加可执行权限。
4. 重新打开git bash,问题应该就解决了。
阅读全文