我想安装一个github.com/tuotoo/qrcode来给项目用的,百度半天还是不知道怎么装。
这也不行
[root@localhost ~]# go install github.com/tuotoo/qrcode@latest
package github.com/tuotoo/qrcode is not a main package
这也不行,大佬们咋整
[root@localhost ~]# go get github.com/tuotoo/qrcode
go: go.mod file not found in current directory or any parent directory.
'go get' is no longer supported outside a module.
To build and install a command, use 'go install' with a version,
like 'go install example.com/cmd@latest'
For more information, see https://golang.org/doc/go-get-install-deprecation
or run 'go help get' or 'go help install'.
更多评论
哎……你应该多看看文档
第一步,你先创建一个工程目录
第二步,进入工程目录,然后在命令行执行 go mod init
第三步,再执行go get github.com/tuotoo/qrcode
这样你就可以在工程中的代码里使用了
#1