Skip to content
This repository has been archived by the owner on Aug 18, 2023. It is now read-only.

Commit

Permalink
Merge pull request #97 from harnitsignalfx/patch-2
Browse files Browse the repository at this point in the history
Updated README.md with Ubuntu installation steps
  • Loading branch information
mdubbyap authored Mar 21, 2018
2 parents 82491f3 + 0f3e623 commit 02e71a9
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,21 @@ to [update](https://github.com/golang/go/wiki/Ubuntu) the golang package on
Ubuntu must be executed before running the install script.

```
sudo add-apt-repository ppa:ubuntu-lxc/lxd-stable
sudo add-apt-repository ppa:gophers/archive
sudo apt-get update
sudo apt-get install golang
sudo apt-get install golang-1.10
```

If /usr/bin/go does NOT exist then create a symbolic link

```
sudo ln /usr/lib/go-1.10/bin/go /usr/bin/go
```

Or if /usr/bin/go does exist, then overwrite the older binary

```
sudo cp /usr/lib/go-1.10/bin/go /usr/bin/go
```

## Running
Expand Down

0 comments on commit 02e71a9

Please sign in to comment.