在树莓派上go get fail的问题记录及解决方案
go get github.com/terrancewong/serial
# 错误为GOPATH路径的问题
cannot find package "github.com/terrancewong/serial" in any of:...
/usr/lib/go-1.7/src/github.com/terrancewong/serial (from $GOROOT)
/home/pi/go/src/github.com/terrancewong/serial (from $GOPATH)
Solve:.bashrc加入gopath 后go get success
cd ~ // 由于我的小项目文件夹很多而且里面大多没有src/pkg/bin正规的dir tree,所以我在~/下统一建立一个存放src和pkg的文件夹go mkdir go nano .bashrc // 末尾添加 export GOPATH=~/go // ctrl x y source .bashrc
# unix包含低级操作系统原语的接口 -- 导入失败
package golang.org/x/sys/unix: unrecognized import path "golang.org/x/sys/unix" (https fetch: Get https://golang.org/x/sys/unix?go-get=1: dial tcp 216.239.37.1:443: i/o timeout)
Solve:导入相关库
// 进入gopath的src目录: cd ~/go/src // 创建目录: mkdir -p golang.org/x/ //进入刚创建的目录: cd golang.org/x // 克隆git库: git clone https://github.com/golang/sys.git