本文介绍在Linux Mint 19系统中安装Go(Golang)的方法,共有三种安装方法:从APT存储库安装、从Snap安装或使用Golang安装程序安装Go。其它Linux发行版安装方法请参考在RHEL 8系统中安装Go的方法。
方法一、在Linux Mint 19中从APT存储库安装Go的方法 这是在Linux Mint 19上安装Go的最简单方法,只需在终端中运行以下命令即可添加PPA存储库: sudo add-apt-repository ppa:longsleep/golang-backports 提示添加存储库并导入包验证所需的GPG密钥时,按Enter键。 添加PPA存储库后,更新包列表索引并安装Go: sudo apt-get update sudo apt-get install golang-go 可以使用go版本选项确认已安装的版本,如下: $ go version go version go1.11.5 linux/amd64
方法二、在Linux Mint 19中从Snap安装Go的方法 要使用snap,需要安装有snapd,它将提供用于在Linux Mint 19上安装Go的snap命令: sudo apt-get update sudo apt-get install snapd 然后在Linux Mint 19中安装Go,使用下面命令: sudo snap install --classic go 会在最后出现如下的信息,代表你已安装成功及所安装的版本: 2019-01-26T14:32:27+03:00 INFO Waiting for restart… go 1.11.5 from 'mwhudson' installed
方法三、在Linux Mint 19中使用Golang安装程序安装Go的方法 最后一种方法是使用适用于Linux系统的官方Golang安装程序。 使用wget将其下载到本地系统: wget https://storage.googleapis.com/golang/getgo/installer_linux 下载文件后,将其设为可执行文件: chmod +x ./installer_linux 最后从当前的终端shell运行安装程序: $ ./installer_linux Welcome to the Go installer! Downloading Go version go1.11.5 to /home/jmutai/.go This may take a bit of time… Downloaded! Setting up GOPATH GOPATH has been set up! One more thing! Run source /home/jmutai/.bash_profile to persist the new environment variables to your current session, or open a new shell prompt. 注:要提醒的是,运行source /home/jmutai/.bash_profile以将新环境变量保留到当前会话,或者打开一个新shell提示。 使用~/.bash_profile来开始在当前会话中使用Go环境变量: $ source ~/.bash_profile $ go version go version go1.11.5 linux/amd64 使用此方法时的Go PATH是~/.go。 注:如果要删除,使用go clean -i命令。 附、设置Go PATH 运行以下命令设置你的$GOPATH: mkdir -p ~/go/{bin,pkg,src} echo 'export GOPATH="$HOME/go"' >> ~/.bashrc echo 'export PATH="$PATH:${GOPATH//://bin:}/bin"' >> ~/.bashrc
相关主题 |