Image

知识库 → 在 Debian 12 上安装 golang (Go)

[虚拟服务器]
出版日期: 08.12.2023

在本教程中,我们将在 Debian 12 上安装最新版本的 Go 并运行测试应用程序来测试它。

1. 让我们更新所有包

apt update
apt upgrade

2.下载最新版本的Go

让我们通过访问 https://go.dev/dl/ 复制最新发行版的链接。

2.1 下载并解压压缩包

wget https://go.dev/dl/go1.21.5.linux-amd64.tar.gz
tar -C /usr/local -xzf go1.21.5.linux-amd64.tar.gz

2.2 在配置文件中添加变量

echo "export PATH=/usr/local/go/bin:${PATH}" | sudo tee -a $HOME/.profile
source $HOME/.profile

2.3 查看版本

go version

go1.21.5 linux/amd64

3. 让我们创建一个测试应用程序

mkdir go-hello
nano go-hello/hello.go

package main

import "fmt"

func main() { fmt.Printf("Hello, World\n") }

nano go-hello/go.mod

module example.com/mod

3.1 让我们编译我们的程序

cd go-hello
go build
./mod

Hello, World!

准备好。





暂时没有评论