Update installation instructions, add binaries

Updates the current installation instuctions. Adds links to the
binaries.
This commit is contained in:
Charlie Drage
2018-06-22 09:06:57 -04:00
parent 0141054fe4
commit a6c863d4ab
2 changed files with 17 additions and 4 deletions

View File

@@ -39,13 +39,21 @@ curl -L https://github.com/redhat-developer/odo/raw/master/scripts/install.sh |
#### macOS
```sh
sudo curl -L "https://github.com/redhat-developer/odo/releases/download/v0.0.6/odo-darwin-amd64.gz" | gzip -d > /usr/local/bin/odo; chmod +x /usr/local/bin/odo
# Binary installation
sudo curl -L https://github.com/redhat-developer/odo/releases/download/v0.0.6/odo-darwin-amd64 -o /usr/local/bin/odo && chmod +x /usr/local/bin/odo
# Alternative, compressed tarball installation
sudo sh -c 'curl -L https://github.com/redhat-developer/odo/releases/download/v0.0.6/odo-darwin-amd64.gz | gzip -d > /usr/local/bin/odo; chmod +x /usr/local/bin/odo'
```
#### Linux
```sh
sudo curl -L "https://github.com/redhat-developer/odo/releases/download/v0.0.6/odo-linux-amd64.gz" | gzip -d > /usr/local/bin/odo; chmod +x /usr/local/bin/odo
# Binary installation
sudo curl -L https://github.com/redhat-developer/odo/releases/download/v0.0.6/odo-linux-amd64 -o /usr/local/bin/odo && chmod +x /usr/local/bin/odo
# Alternative, compressed tarball installation
sudo sh -c 'curl -L https://github.com/redhat-developer/odo/releases/download/v0.0.6/odo-linux-amd64.gz | gzip -d > /usr/local/bin/odo; chmod +x /usr/local/bin/odo'
```
#### Windows