我使用后:
brew install go
在我的Mac中安装了我的Go,并给出了摘要:
==> Summary
/usr/local/Cellar/go/1.8.1: 7,030 files, 281.8MB
但在我的查找器中,我找不到local
目录。
如何在我的mac中找到我安装的Go库?
答案 0 :(得分:1)
this one等所有主题都指出:
此目录是隐藏的,因为它是系统目录,用户无需更改其中的任何内容。
要在finder中公开它,请在finder中输入 command shift g 并在弹出的结果中输入
/usr/local
答案 1 :(得分:1)
您可以使用prefix
获取任何Homebrew公式的brew --prefix <formula>
。即使没有安装公式,它也会显示它的位置。
$ brew --prefix go
/usr/local/opt/go
您可以使用open
从终端打开Finder中的任何目录,所以您只需要:
open $(brew --prefix go)
答案 2 :(得分:0)
请查看此https://discussions.apple.com/thread/5418731?tstart=0
从Finder的Go菜单中选择Go to Folder并提供/ usr / local /作为路径。
答案 3 :(得分:0)
需要注意的一点是,根据附加的图像,您在/ User文件夹中查找与/ usr不同的文件夹。