Mac下通过brew安装多个版本的go并实现切换

show you the code

安装

brew search go
brew install [email protected]
brew unlink go
brew link [email protected] --overwrite

切换

brew unlink go
brew link go@xxx --overwrite

mac brew命令简介

查看 brew 的帮助
brew –help

安装软件
brew install git

卸载软件
brew uninstall git

搜索软件
brew search git

显示已经安装软件列表
brew list

更新软件,把所有的 Formula 目录更新,并且会对本机已经安装并有更新的软件用 * 标明。
brew update

更新某具体软件
brew upgrade git

显示软件内容信息
brew info git

用浏览器打开
brew home

显示包依赖
brew deps

显示包的依赖树
brew deps --installed --tree

启动 web 服务器,可以通过浏览器访问 http://localhost:4567/ 来同网页来管理包
brew server

删除程序,和 upgrade 一样,单个软件删除和所有程序老版删除。
brew cleanup git
brew cleanup

查看那些已安装的程序需要更新
brew outdated

你可能感兴趣的:(go,macos,go)