From 27ea2b1fe7ecd2ff43ef481eed956d78af535f38 Mon Sep 17 00:00:00 2001 From: DennisMao Date: Wed, 11 Mar 2020 21:45:39 +0800 Subject: [PATCH] fix #648 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 92b9e7a..805f6a4 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Bee is a command-line tool facilitating development of Beego-based application. To install `bee` use the `go get` command: ```bash -go get github.com/beego/bee +GO111MODULE=off go get github.com/beego/bee ``` Then you can add `bee` binary to PATH environment variable in your `~/.bashrc` or `~/.bash_profile` file: @@ -28,7 +28,7 @@ export PATH=$PATH:/bin > If you already have `bee` installed, updating `bee` is simple: ```bash -go get -u github.com/beego/bee +GO111MODULE=off go get -u github.com/beego/bee ``` ## Basic commands