美文网首页
bash_profile 配置

bash_profile 配置

作者: FieryDragon | 来源:发表于2019-10-25 16:29 被阅读0次

    1.打开终端
    2.打开bash_profile

    vim ~/.bash_profile
    

    3.添加path

    export PUB_HOSTED_URL=https://pub.flutter-io.cn
    export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn
    export PATH=/Users/****/Desktop/development/flutter/bin:$PATH
    

    4.保存退出

    :wq 
    

    5.刷新生效

    source ~/.bash_profile
    

    6.查看配置结果

    echo $PATH
    

    相关文章

      网友评论

          本文标题:bash_profile 配置

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