1
0
mirror of https://github.com/minio/docs.git synced 2025-08-06 14:42:56 +03:00
Files
docs/source/includes/minio-server-installation.rst
2022-09-21 13:40:06 -04:00

94 lines
2.3 KiB
ReStructuredText

.. tab-set::
.. tab-item:: 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**
.. code-block:: shell
:class: copyable
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**
.. code-block:: shell
:class: copyable
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
.. tab-item:: macOS
**Homebrew**
.. code-block:: shell
:class: copyable
brew install minio/stable/minio
minio --help
**Binary Download**
.. code-block:: shell
:class: copyable
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/
.. tab-item:: Windows
Open the following file in a browser:
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:
.. code-block:: powershell
\path\to\mc.exe --help
.. tab-item:: Source
Installation from source is intended for developers and advanced users
and requires a working Golang environment. See
`How to install Golang <https://golang.org/doc/install>`__.
Run the following commands in a terminal environment to install ``minio``
from source:
.. code-block:: shell
:class: copyable
go install github.com/minio/minio@latest
:mc-cmd:`mc admin update` does not support source-based installations.