我已经以root身份安装了Go发行版.Go1删除了所有exp /代码.
是否有智能方法在Go1之后获得exp/*?(我的意思是如何安装在我当地的GOPATH?)
[我的解决方案]
# pull from go repository to $HOME/repo/go
cd $HOME/repo
hg clone https://go.googlecode.com/hg/go
# make symbolic link to your GOPATH(eg. $HOME/go)
cd $HOME/go/src
ln -s $HOME/repo/go/src/pkg/exp .
Run Code Online (Sandbox Code Playgroud) go ×1