Go Installation: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 6: Line 6:
https://go.dev → Download → Apple macOS (ARM64) or Apple macOS (x86-64) → <code>.pkg</code> → double-click.
https://go.dev → Download → Apple macOS (ARM64) or Apple macOS (x86-64) → <code>.pkg</code> → double-click.


It installs
It installs in <code>usr/local/go</code>.


==Linux==
==Linux==

Revision as of 23:59, 14 August 2023

Internal

Installation

Mac

https://go.dev → Download → Apple macOS (ARM64) or Apple macOS (x86-64) → .pkg → double-click.

It installs in usr/local/go.

Linux

https://storage.googleapis.com/golang/go1.6.linux-amd64.tar.gz

Install under /opt:

cd /opt
wget https://storage.googleapis.com/golang/go1.6.linux-amd64.tar.gz
gunzip < go1.6.linux-amd64.tar.gz | tar xfv -
mv go go1.6
ln -s ./go1.6 go

Then update .bashrc, declare GOROOT environment variable:

export GOROOT=/opt/go
export PATH=...:${GOROOT}/bin:...

Transfer from and Delete

Go Installation TO DELETE