You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Go](https://go.dev/) is an open source programming language.
21
+
[Go](https://go.dev/) is an open source programming language that's available for a variety of operating systems and Linux distributions.
23
22
24
-
## What should I do before installing Go?
23
+
There are multiple ways to install Go. In this guide, you'll learn how to install Go for Ubuntu on Arm.
25
24
26
-
Go is available for a variety of operating systems and Linux distributions and has multiple ways to install it.
27
-
28
-
This article provides a quick solution to install Go for Ubuntu on Arm.
25
+
## Before you begin
29
26
30
27
Confirm you are using an Arm machine by running:
31
28
32
29
```bash
33
30
uname -m
34
31
```
35
32
36
-
The output should be:
33
+
The output is similar to:
37
34
38
35
```output
39
36
aarch64
40
37
```
41
38
42
39
If you see a different result, you are not using an Arm computer running 64-bit Linux.
43
40
44
-
## How do I download and install Go?
41
+
## Download and install Go
42
+
43
+
The easiest way to install Go for Ubuntu on Arm is to download a release, extract it, and set up your `PATH` environment variable. To download and install Go, follow these steps:
45
44
46
-
The easiest way to install Go for Ubuntu on Arm is to download a release, extract it, and setup your `PATH` environment variable.
45
+
{{% notice Note %}}
46
+
The following steps use `go1.24.5`. To download the latest version of Go, replace `go1.24.5` with the identifier for the latest version. To find the latest version of Go, see [All releases](https://go.dev/dl/).
0 commit comments