美文网首页
mac 安装ant

mac 安装ant

作者: SunBoyXiao | 来源:发表于2016-07-13 15:34 被阅读7051次

    下载ant:http://ant.apache.org/bindownload.cgi

    9F52190E-389C-4020-A9B1-361C43F0CA6E.png

    增加环境变量
    (环境变量在当前用户根目录下的.bash_profile里,如果之前没有设置过默认是没有.bash_profile文件的,可以手工创建一个。)
    export ANT_HOME=/Users/apple/Documents/work/apache-ant-1.9.4
    export PATH=${PATH}:${ANT_HOME}/bin

    mac 下更新 .bash_profile 文件
    1、打开terminal(终端)
    2、cd ~ ( 进入当前用户的home目录)
    3、open .bash_profile (打开.bash_profile文件,如果文件不存在就 创建文件:touch .bash_profile 编辑文件:open -e bash_profile)
    4、直接更改弹出的.bash_profile文件内容
    5、command + s 保存文件,然后关闭
    6、在terminal(终端)中输入 source .bash_profile (使用刚才更新之后的内容)

    相关文章

      网友评论

          本文标题:mac 安装ant

          本文链接:https://www.haomeiwen.com/subject/tbosjttx.html