Skip to content
This repository was archived by the owner on Dec 16, 2025. It is now read-only.

Installing Go on Ubuntu

Miguel Mota edited this page Apr 19, 2018 · 1 revision

Using PPA

Add PPA, update and install

sudo add-apt-repository ppa:gophers/archive
sudo apt-get update
sudo apt-get install golang-1.10-go

source

Using GVM

Install gvm

bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer)

Install go

gvm install go1.10 -B
gvm use go1.10

Clone this wiki locally