Installation
Installation​
Select tab depending on the system you use:
- Mac with Apple Silicon
- Mac with Intel chip
- Linux
- Windows
- Other
Use Homebrew to install the latest version of the Fuse CLI:
brew install kubeshop/fuse-releases/fuse
Upgrade the existing installation with:
brew upgrade kubeshop/fuse-releases/fuse
Alternatively, download the version of the Fuse CLI binary and move it to a directory under your $PATH
:
curl -Lo fuse https://github.com/kubeshop/fuse-releases/releases/latest/download/fuse-darwin-arm64
chmod +x fuse && mv fuse /usr/local/bin/fuse
Use Homebrew to install the latest version of the Fuse CLI:
brew install kubeshop/fuse-releases/fuse
Upgrade the existing installation with:
brew upgrade kubeshop/fuse-releases/fuse
Alternatively, download the version of the Fuse CLI binary and move it to a directory under your $PATH
:
curl -Lo fuse https://github.com/kubeshop/fuse-releases/releases/latest/download/fuse-darwin-amd64
chmod +x fuse && mv fuse /usr/local/bin/fuse
Download the version of the Fuse CLI binary and move it to a directory under your $PATH
:
export ARCH=<your-arch> # allowed values: amd64, arm64, 386
curl -Lo fuse https://github.com/kubeshop/fuse-releases/releases/latest/download/fuse-linux-${ARCH}
chmod +x fuse && mv fuse /usr/local/bin/fuse
You may need to use sudo
to run the mv
command as it moves the binary file to the /usr/local/bin/
directory.
Alternatively, if you use Homebrew, you can use it to install the latest version of the Fuse CLI:
brew install kubeshop/fuse-releases/fuse
Upgrade the existing installation with:
brew upgrade kubeshop/fuse-releases/fuse
Use curl to download the version of the Fuse CLI binary:
curl -Lo fuse https://github.com/kubeshop/fuse-releases/releases/latest/download/fuse-windows-amd64.exe
Move the binary to a directory under your %PATH%
.
Use curl to download the version of the Fuse CLI binary:
export OS=<your-os> # allowed values: darwin, linux, windows
export ARCH=<your-arch> # allowed values: amd64, arm64, 386
export SUFFIX="" # set to ".exe" if OS is 'windows'
curl -Lo fuse https://github.com/kubeshop/fuse-releases/releases/latest/download/fuse-${OS}-${ARCH}${SUFFIX}
chmod +x fuse && mv fuse /usr/local/bin/fuse
Move the binary to a directory under your $PATH
or %PATH%
, depending on your operating system.