Ubuntu上通过apt安装golang
aside section._1OhGeD · · 10819 次点击 · · 开始浏览Ubuntu · golang/go Wiki
The Go project's official download page is at https://golang.org/dl/.
If you're using Ubuntu 16.04 LTS, 18.04 LTS or 19.04 on amd64, arm64, armhf or i386, then you can use the longsleep/golang-backports PPA and install Go 1.13.
sudo add-apt-repository ppa:longsleep/golang-backports
sudo apt-get update
sudo apt-get install golang-go
Note that
golang-goinstalls latest Go as default Go. If you do not want that, installgolang-1.13instead and use the binaries from/usr/lib/go-1.13/bin.
There are some other options for Debian based systems like Ubuntu. These packages were not created by the Go project, and we don't support them, but they may be useful for you.
Try:
$ sudo apt-get update
$ sudo apt-get install golang-go
If that's too new for you, try:
$ sudo add-apt-repository ppa:gophers/archive
$ sudo apt-get update
$ sudo apt-get install golang-1.11-go
Note that
golang-1.11-goputs binaries in/usr/lib/go-1.11/bin. If you want them on your PATH, you need to make that change yourself.
Using snaps also works quite well:
# This will give you the latest version of go
$ sudo snap install --classic go
A restart is required for the command to be recognized.
原文地址: https://github.com/golang/go/wiki/Ubuntu
有疑问加站长微信联系(非本文作者)
入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889
关注微信- 请尽量让自己的回复能够对别人有帮助
- 支持 Markdown 格式, **粗体**、~~删除线~~、
`单行代码` - 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
- 图片支持拖拽、截图粘贴等方式上传
收入到我管理的专栏 新建专栏
Ubuntu · golang/go Wiki
The Go project's official download page is at https://golang.org/dl/.
If you're using Ubuntu 16.04 LTS, 18.04 LTS or 19.04 on amd64, arm64, armhf or i386, then you can use the longsleep/golang-backports PPA and install Go 1.13.
sudo add-apt-repository ppa:longsleep/golang-backports
sudo apt-get update
sudo apt-get install golang-go
Note that
golang-goinstalls latest Go as default Go. If you do not want that, installgolang-1.13instead and use the binaries from/usr/lib/go-1.13/bin.
There are some other options for Debian based systems like Ubuntu. These packages were not created by the Go project, and we don't support them, but they may be useful for you.
Try:
$ sudo apt-get update
$ sudo apt-get install golang-go
If that's too new for you, try:
$ sudo add-apt-repository ppa:gophers/archive
$ sudo apt-get update
$ sudo apt-get install golang-1.11-go
Note that
golang-1.11-goputs binaries in/usr/lib/go-1.11/bin. If you want them on your PATH, you need to make that change yourself.
Using snaps also works quite well:
# This will give you the latest version of go
$ sudo snap install --classic go
A restart is required for the command to be recognized.