移动测试基础 mac 环境变量配置

另一种蓝 · 2018年08月26日 · 1154 次阅读

Mac 系统的环境变量,加载顺序为:
/etc/profile /etc/paths ~/.bash_profile ~/.bash_login ~/.profile ~/.bashrc

  1. 启动 Terminal 终端工具
  2. 输⼊ cd ~/ 进⼊入当前⽤用户的 home ⽬目录
  3. 创建:touch .bash_profile
  4. 打开并编辑:open .bash_profile
  5. 在⽂文件中写⼊入以下内容: android_home=/Users/xxx/Library/Android/sdk export PATH=$android_home/tools:$PATH export PATH=$android_home/platform-tools:$PATH 注:android_home 请根据⾃自⼰己的 sdk 路路径配置。
  6. 执⾏生效:source .bash_profile
  7. 输入 adb 命令验证
暂无回复。
需要 登录 后方可回复, 如果你还没有账号请点击这里 注册