如何手动下载mysql驱动程序

Is there any way to download mysql driver mannually for ubuntu(ver:16.04)? Seems our server has blocking access to the github.com, so I need deploy mysql driver by hand.

The go get github.com/go-sql-driver/mysql command haven't any response for a while then exit it. I've already installed git & go.

Thanks for any help!!

Use

$ mkdir $GOPATH/src/github.com/go-sql-driver/mysql
$ pushd $GOPATH/src/github.com/go-sql-driver
$ git clone https://github.com/go-sql-driver/mysql.git
$ popd