Skip to content
Snippets Groups Projects
Commit 830f7fec authored by Bojin LI's avatar Bojin LI
Browse files

Update download command to support different architectures

parent 64ec2673
Branches master
No related tags found
No related merge requests found
......@@ -211,14 +211,22 @@ kubectl get pods -n fission --watch
## Fission Client
### Mac & Linux
### Mac & Linux (curl)
```shell
OS=$(uname -s | tr '[:upper:]' '[:lower:]')
curl -Lo fission https://github.com/fission/fission/releases/download/v$FISSION_VERSION/fission-v$FISSION_VERSION-$OS-amd64 \
ARCH=$(uname -m | tr '[:upper:]' '[:lower:]')
curl -Lo fission https://github.com/fission/fission/releases/download/v$FISSION_VERSION/fission-v$FISSION_VERSION-$OS-$ARCH \
&& chmod +x fission && sudo mv fission /usr/local/bin/
```
### Mac (brew)
```shell
brew tap xxxbrian/tap
brew install fission-cli
```
### Windows
For Windows, please use the Linux binary on WSL.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment