1.启动Terminal终端工具
2.输入cd ~/ 进入当前用户的home目录
3. 创建:
touch .bash_profile
4.打开并编辑:
open .bash_profile
5、在文件中写入以下内容:export PATH=${PATH}:/Users/charles/Documents/android-sdk/tools:/Users/charles/Documents/android-sdk/platform-tools
其中:/Users/charles/Documents/android-sdk/tools不是固定的,它指向android SDK的tools目录,/Users/charles/Documents/android-sdk/platform-tools指向android SDK的platform-tools目录,也是根据具体情况而定。这只是我配置的时候所用的路径而已。
6、执行如下命令:source .bash_profile
7、验证:输入adb回车。如果未显示command not found,说明此命令有效,环境便亮设置完成。
如何想知道自己的路径:
Finder栏默认只显示当前浏览的文件夹名称,而没有显示访问路径:
打开“终端”(应用程序-》实用工具),输入以下两条命令:
defaults write com.apple.finder _FXShowPosixPathInTitle -bool TRUE;killall Finder
你看完整的路径地址出来了吧。
如何恢复默认状态呢?
打开“终端”(应用程序-》实用工具),输入以下两条命令:
defaults delete com.apple.finder _FXShowPosixPathInTitle;killall Finder
这就是如何在Finder栏上显示当前浏览文件的访问路径的方法