Skip to content

Commit 67c02be

Browse files
authored
Merge pull request #72 from vladlearns/master
docs: add instructions for ubuntu/linux installation
2 parents 3a517fc + db04923 commit 67c02be

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,27 @@ This is a compiled go binary, so just put it in your `$PATH`.
122122

123123
If you're on os x make sure to then run `xattr -d com.apple.quarantine /path/to/aws-sso-creds` to allow it to run.
124124

125+
## Ubuntu/Linux
126+
127+
For Ubuntu and other Linux distributions, download the latest release from GitHub:
128+
129+
```bash
130+
# Download the latest release (replace v2.0.0 with the latest version)
131+
wget https://github.com/jaxxstorm/aws-sso-creds/releases/download/v2.0.0/aws-sso-creds-v2.0.0-linux-amd64.tar.gz
132+
133+
# Extract the tarball
134+
tar -xzf aws-sso-creds-v2.0.0-linux-amd64.tar.gz
135+
136+
# Move the binary to your PATH
137+
sudo mv aws-sso-creds /usr/local/bin/
138+
139+
# Make it executable
140+
sudo chmod +x /usr/local/bin/aws-sso-creds
141+
142+
# Verify installation
143+
aws-sso-creds --help
144+
```
145+
125146
## Homebrew
126147

127148
A tap is provided to install via [homebrew](homebrew.sh):

0 commit comments

Comments
 (0)