diff --git a/docs/tasks.md b/docs/tasks.md index 971bcfdc..10a71d5f 100644 --- a/docs/tasks.md +++ b/docs/tasks.md @@ -71,7 +71,7 @@ href="https://go.dev/dl/go1.23.5.linux-amd64.tar.gz" > 1. 删除 `/usr/local/go` 文件夹(如果存在)来删除任何以前的 Go 安装,然后将刚刚下载的存档解压缩到 `/usr/local`,在 `/usr/local/go` 中创建一个新的 Go 目录: ```bash - $ rm -rf /usr/local/go && tar -C /usr/local -xzf go1.19.4.linux-amd64.tar.gz + $ rm -rf /usr/local/go && tar -C /usr/local -xzf go1.23.5.linux-amd64.tar.gz ``` :::note 注意 diff --git a/i18n/en/docusaurus-plugin-content-docs/current/tasks.md b/i18n/en/docusaurus-plugin-content-docs/current/tasks.md index a9fa24b0..d8a4630f 100644 --- a/i18n/en/docusaurus-plugin-content-docs/current/tasks.md +++ b/i18n/en/docusaurus-plugin-content-docs/current/tasks.md @@ -26,37 +26,37 @@ Go Website below: ## 1. Downloads :::note NOTE -Here we take the `1.19` version as an example, and it is **not recommended** to install a specific version. Developers can choose according to their needs. For more versions, go to [Go to Golang](https://go.dev/dl/) to choose by yourself. +Here we take the `1.23` version as an example, and it is **not recommended** to install a specific version. Developers can choose according to their needs. For more versions, go to [Go to Golang](https://go.dev/dl/) to choose by yourself. ::: +href="https://go.dev/dl/go1.23.5.windows-amd64.msi">

Supported Windows 7 and beyond, Intel 64-bit processor

-go1.19.4.windows-amd64.msi(135MB) +go1.23.5.windows-amd64.msi(135MB)
+href="https://go.dev/dl/go1.23.5.darwin-arm64.pkg">

Support macOS 11 and later, Apple 64 bit processor

-go1.19.4.darwin-arm64.pkg(139MB) +go1.23.5.darwin-arm64.pkg(139MB)
+href="https://go.dev/dl/go1.23.5.darwin-amd64.pkg">

Supported macOS 10.13 and later, 64 bit processor

-go1.19.4.darwin-amd64.pkg(145MB) +go1.23.5.darwin-amd64.pkg(145MB)
+href="https://go.dev/dl/go1.23.5.linux-amd64.tar.gz">

Support Linux 2.6.32 and later, Intel 64-bit processor

-go1.19.4.linux-amd64.tar.gz(142MB) +go1.23.5.linux-amd64.tar.gz(142MB)
@@ -71,7 +71,7 @@ Other versions and operating systems can [to go to the official network](https:/ 1 Delete the `/usr/local/go` folder (if available) to remove any previous Go installation and then compress the just downloaded archive to `/usr/local`, Create a new Go directory in `/usr/local/go`: ```bash -$ rm -rf /usr/local/go && tar -C /usr/local -xzf go1.19.4.linux-amd64.tar.gz +$ rm -rf /usr/local/go && tar -C /usr/local -xzf go1.23.5.linux-amd64.tar.gz ``` ::NOTE