我如何安装Postgres驱动程序的gorm与杜松子酒?

rur96b6h  于 2023-03-06  发布在  Go
关注(0)|答案(1)|浏览(119)

我尝试将Gin应用程序连接到Postgres数据库,两者都已停靠。我在安装Postgres驱动程序时遇到错误。配置在website上描述:

$ go get -u gorm.io/driver/postgres
go: downloading gorm.io/gorm v1.24.2
go: downloading github.com/jackc/pgx/v5 v5.3.1
go: downloading github.com/jackc/pgx v3.6.2+incompatible
gorm.io/driver/postgres imports
        github.com/jackc/pgx/v5 imports
        github.com/jackc/pgx/v5/pgtype imports
        net/netip: package net/netip is not in GOROOT (/usr/local/go/src/net/netip)

net/netip软件包好像不在GOROOT里。我发现它应该在这里。发生了什么事?
我的围棋版本是1.17.6

$ go version
go version go1.17.6 linux/amd64
hi3rlvi2

hi3rlvi21#

至少升级到1.18版本,这可能就是问题所在

相关问题