2.4 KiB
Linux
The following commands add a temporary extension to your
system PATH for running the minio
utility. Defer to your
operating system instructions for making permanent modifications to your
system PATH.
Alternatively, execute minio
by navigating to the
download folder and running ./minio --help
64-bit Intel
curl https://dl.min.io/server/minio/release/linux-amd64/minio \
--create-dirs \
-o $HOME/minio-binaries/minio
chmod +x $HOME/minio-binaries/minio
export PATH=$PATH:$HOME/minio-binaries/
minio --help
64-bit PPC
curl https://dl.min.io/server/minio/release/linux-ppc64le/minio \
--create-dirs \
-o $HOME/minio-binaries/minio
chmod +x $HOME/minio-binaries/minio
export PATH=$PATH:$HOME/minio-binaries/
minio --help
macOS
Homebrew
brew install minio/stable/minio
minio --help
Binary Download
curl https://dl.min.io/server/minio/release/darwin-amd64/minio \
--create-dirs \
-o $HOME/minio-binaries/minio
chmod +x $HOME/minio-binaries/minio
export PATH=$PATH:$HOME/minio-binaries/
Windows
Open the following URL in a browser and save the file:
https://dl.min.io/server/minio/release/windows-amd64/minio.exe
Execute the file by double clicking on it, or by running the following in the command prompt or powershell:
C:\path\to\mc.exe --help
Source
Installation from source is intended for developers and advanced users and requires a working Golang environment. See How to install Golang.
Run the following commands in a terminal environment to install
minio
from source:
go get -d github.com/minio/minio
cd ${GOPATH}/src/github.com/minio/minio
make
To update a source-based installation, use go get -u
.
mc admin update
does
not support source-based installations.