From a83105df9d6b534a192558767ca66a4195ce5860 Mon Sep 17 00:00:00 2001 From: Minio Trusted Date: Wed, 21 Sep 2022 10:34:45 -0700 Subject: [PATCH] remove deprecated GO111MODULE=on env --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 84fc987c7..eb0ecc467 100644 --- a/README.md +++ b/README.md @@ -128,7 +128,7 @@ You can also connect using any S3-compatible tool, such as the MinIO Client `mc` Use the following commands to compile and run a standalone MinIO server from source. Source installation is only intended for developers and advanced users. If you do not have a working Golang environment, please follow [How to install Golang](https://golang.org/doc/install). Minimum version required is [go1.18](https://golang.org/dl/#stable) ```sh -GO111MODULE=on go install github.com/minio/minio@latest +go install github.com/minio/minio@latest ``` The MinIO deployment starts using default root credentials `minioadmin:minioadmin`. You can test the deployment using the MinIO Console, an embedded web-based object browser built into MinIO Server. Point a web browser running on the host machine to and log in with the root credentials. You can use the Browser to create buckets, upload objects, and browse the contents of the MinIO server.