安装gvm
自动安装
1 | # It is recommended to clear the `GOROOT`, `GOBIN`, and other environment variables before installation. |
手动安装
创建目录 GOROOT
1 | mkdir ~/.g |
从 github releases 下载二进制压缩文件并将其解压到目录 GOBIN
的子目录中 GOROOT
(即 GOBIN
)
1 | mkdir ~/.g/bin |
将必要的环境变量写入 GOROOT
文件
1 | cat >~/.g/env <<'EOF' |
导入 GOBIN
到 shell 环境配置文件
1 | cat >>~/.bashrc <<'EOF' |
启用环境变量。
1 | source ~/.bashrc # source ~/.zshrc |