path环境配置
- 执行打开.bash_profile文件的命令:如果你看到 .bash_profile does not exist.
1
open -e .bash_profile
执行touch .bash_profile
(创建 bash_profile文件)
- 执行打开.bash_profile文件的命令:
- 打开.bash_profile文件后直接在最末尾处追加设置flutter bin目录路径为环境变量:
不用加~以上三行都加上1
2
3export PATH=/Users/XXXXX/Applications/soft/flutter/bin:$PATH
export PUB_HOSTED_URL=https://pub.flutter-io.cn
export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn
- 打开.bash_profile文件后直接在最末尾处追加设置flutter bin目录路径为环境变量:
tips: 查看flutter安装目录 文件拖入terminal
- 保存关闭.bash_profile文件之后,需要执行以下命令,更新环境变量:以上命令代表刷新环境变量
1
source ~/.bash_profile
- 保存关闭.bash_profile文件之后,需要执行以下命令,更新环境变量:
- 检测
打开终端执行flutter doctor
就发现有效果了.
- 检测
tips: 注意如果终端使用的是
zsh
,终端启动时~/.bash_profile
将不会被家长,解决办法就是修改~/.zshrc
,在其中添加:source ~/.bash_profile
第一步 打开zshrc文件
1 | open -e .zshrc |
第二步 打开文件把source ~/.bash_profile
添加到末尾