From 6e114e823a41261f346f0e3b56caebd6170d37b8 Mon Sep 17 00:00:00 2001 From: hailaz <739476267@qq.com> Date: Wed, 8 Jan 2025 15:04:20 +0800 Subject: [PATCH 1/4] =?UTF-8?q?fix:=20=E5=A2=9E=E5=8A=A0go=20install?= =?UTF-8?q?=E6=B3=A8=E6=84=8F=E4=BA=8B=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...345\205\267\345\256\211\350\243\205-install.md" | 12 ++++++++---- ...345\205\267\345\256\211\350\243\205-install.md" | 14 ++++++++++++-- 2 files changed, 20 insertions(+), 6 deletions(-) diff --git "a/docs/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\345\267\245\345\205\267\345\256\211\350\243\205-install.md" "b/docs/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\345\267\245\345\205\267\345\256\211\350\243\205-install.md" index 6abcd81dae8..595a6e5b8f8 100644 --- "a/docs/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\345\267\245\345\205\267\345\256\211\350\243\205-install.md" +++ "b/docs/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\345\267\245\345\205\267\345\256\211\350\243\205-install.md" @@ -13,13 +13,13 @@ description: '在不同操作系统上安装GoFrame工具,包括MacOS和Window ### 最新版下载 -#### `Mac`&`Linux` 快捷下载命令 +#### `Mac`&`Linux`  快捷下载命令 ```bash wget -O gf https://github.com/gogf/gf/releases/latest/download/gf_$(go env GOOS)_$(go env GOARCH) && chmod +x gf && ./gf install -y && rm ./gf ``` -#### Windows需手动下载 +#### Windows 需手动下载 确定自己当前项目的 `goframe` 依赖版本,查看自己的系统信息: @@ -32,25 +32,29 @@ go env GOARCH ### 通过 `go install` 安装 +注意:需要将 `GOPATH/bin` 加入到系统环境变量中,通过 `go env GOPATH` 查看。 + #### 最新版本 + ```bash go install github.com/gogf/gf/cmd/gf/v2@latest ``` #### 指定版本(版本需要 >= v2.5.5) + ```bash go install github.com/gogf/gf/cmd/gf/v2@v2.5.5 ``` ### 其它版本下载 -#### v2版本 +#### v2 版本 预编译二进制下载: [releases](https://github.com/gogf/gf/releases) 源码:[gf/cmd/gf](https://github.com/gogf/gf/tree/master/cmd/gf) -#### v1版本 +#### v1 版本 预编译二进制下载: [releases](https://github.com/gogf/gf-cli/releases) diff --git "a/i18n/en/docusaurus-plugin-content-docs/current/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\345\267\245\345\205\267\345\256\211\350\243\205-install.md" "b/i18n/en/docusaurus-plugin-content-docs/current/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\345\267\245\345\205\267\345\256\211\350\243\205-install.md" index 2f76ad668cf..ca759f9525f 100644 --- "a/i18n/en/docusaurus-plugin-content-docs/current/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\345\267\245\345\205\267\345\256\211\350\243\205-install.md" +++ "b/i18n/en/docusaurus-plugin-content-docs/current/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\345\267\245\345\205\267\345\256\211\350\243\205-install.md" @@ -32,11 +32,21 @@ Download link: [releases](https://github.com/gogf/gf/releases) ### Install via `go install` +Note: Add `GOPATH/bin` to the system environment variables, check with `go env GOPATH`. + +#### Latest version + ```bash -go install github.com/gogf/gf/cmd/gf/v2@latest # Latest version -go install github.com/gogf/gf/cmd/gf/v2@v2.5.5 # Specify version (version needs to be >= v2.5.5) +go install github.com/gogf/gf/cmd/gf/v2@latest ``` +#### Specify version (version needs to be >= v2.5.5) + +```bash +go install github.com/gogf/gf/cmd/gf/v2@v2.5.5 +``` + + ### Download Other Versions #### v2 Version From 180a46fbec61047070c6b525e0989d0b8f250df4 Mon Sep 17 00:00:00 2001 From: hailaz <739476267@qq.com> Date: Wed, 8 Jan 2025 15:09:31 +0800 Subject: [PATCH 2/4] =?UTF-8?q?fix:=20=E6=A0=BC=E5=BC=8F=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...345\267\245\345\205\267\345\256\211\350\243\205-install.md" | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git "a/i18n/en/docusaurus-plugin-content-docs/current/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\345\267\245\345\205\267\345\256\211\350\243\205-install.md" "b/i18n/en/docusaurus-plugin-content-docs/current/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\345\267\245\345\205\267\345\256\211\350\243\205-install.md" index ca759f9525f..60aa5562432 100644 --- "a/i18n/en/docusaurus-plugin-content-docs/current/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\345\267\245\345\205\267\345\256\211\350\243\205-install.md" +++ "b/i18n/en/docusaurus-plugin-content-docs/current/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\345\267\245\345\205\267\345\256\211\350\243\205-install.md" @@ -46,7 +46,6 @@ go install github.com/gogf/gf/cmd/gf/v2@latest go install github.com/gogf/gf/cmd/gf/v2@v2.5.5 ``` - ### Download Other Versions #### v2 Version @@ -87,4 +86,4 @@ I found some installable paths for you(from $PATH): 4 | true | false | /Users/john/.ft please choose one installation destination [default 0]: gf binary is successfully installed to: /usr/local/bin -``` \ No newline at end of file +``` From 8894010f9a3287f9d1eb74c7ba10292efa648c2d Mon Sep 17 00:00:00 2001 From: hailaz <739476267@qq.com> Date: Thu, 9 Jan 2025 14:23:43 +0800 Subject: [PATCH 3/4] =?UTF-8?q?Update=20=E5=B7=A5=E5=85=B7=E5=AE=89?= =?UTF-8?q?=E8=A3=85-install.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...\345\267\245\345\205\267\345\256\211\350\243\205-install.md" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/docs/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\345\267\245\345\205\267\345\256\211\350\243\205-install.md" "b/docs/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\345\267\245\345\205\267\345\256\211\350\243\205-install.md" index 595a6e5b8f8..b9e30f3807f 100644 --- "a/docs/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\345\267\245\345\205\267\345\256\211\350\243\205-install.md" +++ "b/docs/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\345\267\245\345\205\267\345\256\211\350\243\205-install.md" @@ -32,7 +32,7 @@ go env GOARCH ### 通过 `go install` 安装 -注意:需要将 `GOPATH/bin` 加入到系统环境变量中,通过 `go env GOPATH` 查看。 +注意:需要将 `$GOPATH/bin` 加入到系统环境变量中,通过 `go env GOPATH` 查看。 #### 最新版本 From d67835349cc65408249282146fc74314b7af591b Mon Sep 17 00:00:00 2001 From: hailaz <739476267@qq.com> Date: Thu, 9 Jan 2025 14:24:10 +0800 Subject: [PATCH 4/4] =?UTF-8?q?Update=20=E5=B7=A5=E5=85=B7=E5=AE=89?= =?UTF-8?q?=E8=A3=85-install.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...\345\267\245\345\205\267\345\256\211\350\243\205-install.md" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/i18n/en/docusaurus-plugin-content-docs/current/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\345\267\245\345\205\267\345\256\211\350\243\205-install.md" "b/i18n/en/docusaurus-plugin-content-docs/current/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\345\267\245\345\205\267\345\256\211\350\243\205-install.md" index 60aa5562432..9213a28181a 100644 --- "a/i18n/en/docusaurus-plugin-content-docs/current/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\345\267\245\345\205\267\345\256\211\350\243\205-install.md" +++ "b/i18n/en/docusaurus-plugin-content-docs/current/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\345\267\245\345\205\267\345\256\211\350\243\205-install.md" @@ -32,7 +32,7 @@ Download link: [releases](https://github.com/gogf/gf/releases) ### Install via `go install` -Note: Add `GOPATH/bin` to the system environment variables, check with `go env GOPATH`. +Note: Add `$GOPATH/bin` to the system environment variables, check with `go env GOPATH`. #### Latest version