本文记录一下在学习 go 语言过程中遇到的问题。
1.下述代码中_ "github.com/go-sql-driver/mysql"
中的_
的作用。
1 2 3 4 5 6
| import ( "database/sql" "fmt"
_ "github.com/go-sql-driver/mysql" )
|
参考资料:
- What does an underscore in front of an import statement mean?
- Import declarations
2.镜像源配置:
在`.bashrc`文件中写入:
1 2 3 4 5 6 7 8 9 10 11 12 13
| go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.cn,direct
go env -w GOPROXY=https://mirrors.aliyun.com/goproxy/,direct
go env -w GOPROXY=https://goproxy.io,direct
|
> 参考资料:
> 1. [Go 国内加速:Go 国内加速镜像 | Go 技术论坛](https://learnku.com/go/wikis/38122)
3.Linux安装go
> 参考资料:
> 1. [Go 语言环境安装 | 菜鸟教程](https://www.runoob.com/go/go-environment.html)