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

Commit

Permalink
Update installation instructions in the README
Browse files Browse the repository at this point in the history
  • Loading branch information
rbvigilante committed May 1, 2018
1 parent 27a34f8 commit efe60c1
Showing 1 changed file with 43 additions and 1 deletion.
44 changes: 43 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,49 @@ A tool to log in to AWS through Okta. If you want a backronym, try 'Your AWS Kre

## Usage

To install yak, run `go get -u github.com/redbubble/yak`.
### Installation

#### Manually

Download the [latest release](https://github.com/yak/releases/latest) for your architecture. `yak` is statically linked,
so all you should need to do is put the executable somewhere in your $PATH.

This method will not give you tab-completion; if you'd like that, the completions files are available in
[/static/completions](https://github.com/redbubble/yak/tree/master/static/completions).

#### Deb

Download the deb file from the [latest release](https://github.com/redbubble/yak/releases/latest).

You can then install it with

```
sudo apt install <filename>
```

or

```
sudo dpkg -i <filename>
```

#### RPM

Download the RPM file from the [latest release](https://github.com/redbubble/yak/releases/latest).

You can then install it with

```
sudo dnf install <filename>
```

#### Go Get

This should only really be preferred if you want to hack on `yak`. If you want to do that:

```
go get -u github.com/redbubble/yak
```

### Running

Expand Down

0 comments on commit efe60c1

Please sign in to comment.