Created
April 25, 2017 18:55
-
-
Save deekoder/b3b6423c7cc291b6853aebfde85c3822 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fresh Install | |
Installing Minio packages for macOS is done via brew. | |
``` | |
brew install minio/stable/minio | |
minio server ~/Photos | |
``` | |
Upgrade | |
Minio used to be available on macOS with a simple `brew install minio` | |
Step 1: Uninstall minio if you installed it using `brew install minio` | |
``` | |
brew uninstall minio | |
``` | |
Step 2: Fresh Install using new path | |
Once you remove minio completely from your system, proceed to do : | |
``` | |
brew install minio/stable/minio | |
``` | |
Minio does not work with go 1.8 because of upstream bugs in golang such as https://github.com/golang/go/issues/19734. | |
We will re-enable minio installation on macOS via `brew install minio` as these fixes become available to us in go 1.8.1 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment