mac下使用命令行打包出现bash gradle command not found的解决方案

命令行打包的时候出现 bash gradle command not found这个问题,主要是因为gradle环境丢失。需要重新配置gradle的环境变量。

1. gradle路径的查找

mac下使用命令行打包出现bash gradle command not found的解决方案

mac下使用命令行打包出现bash gradle command not found的解决方案

mac下使用命令行打包出现bash gradle command not found的解决方案

然后gradle 右键 显示简介 复制下蓝色的

mac下使用命令行打包出现bash gradle command not found的解决方案

2. 环境变量的配置

在.bash_profile文件中,添加如下图选中内容的配置信息:

mac下使用命令行打包出现bash gradle command not found的解决方案

执行source .bash_profile,将配置的环境变量生效。

使用命令[gradle -v]看是否出现版本号,如果出现版本号,说明环境变量配置成功了。

上一篇:mvn从下载安装到纯命令行创建第一个mvn程序(编码,编译,测试,安装,打包)全过程细致分解


下一篇:【总结】嵌入式linux内核中Makefile、Kconfig、.config的关系及增加开机Hello World【转】