Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 1.install-compile.md #144

Merged
merged 1 commit into from
Feb 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions 1.install-compile.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ By downloading the binary we avoid compiling the source code.
```

## Option 2. Compile instructions:
### Install GoLang v1.18.x
### Install GoLang v1.19.x

The official instructions can be found here: https://golang.org/doc/install

Expand All @@ -57,7 +57,7 @@ The official instructions can be found here: https://golang.org/doc/install
```
2. Download the software:
```
curl https://dl.google.com/go/go1.18.5.linux-amd64.tar.gz | sudo tar -C/usr/local -zxvf -
curl https://go.dev/dl/go1.19.6.linux-amd64.tar.gz | sudo tar -C/usr/local -zxvf
```
3. Update environment variables to include Go (copy everything & paste)
```
Expand All @@ -74,7 +74,7 @@ The official instructions can be found here: https://golang.org/doc/install
```
go version
```
Should return `go version go1.18.5 linux/amd64`
Should return `go version go1.19.6 linux/amd64`

### Download source code and compile
5. Download the source code using `git`
Expand Down