yoshiislandblog.net
元営業の駆け出しアラサーSEが、休日にMACと戯れた際の殴り書きメモ。日々勉強。日々進歩。

この記事は3年以上前に書かれた記事で内容が古い可能性があります

go tourをmacで動かす

2017-08-25

何か以下のエラーが出てきてgotourをローカルで動かせないよ。という話。

% go tool tour
go tool: no such tool "tour"

オンラインのは以下
A Tour of Go

goのバージョン

% go version
go version go1.8 darwin/amd64

やること

% go get golang.org/x/tour/gotour

% cp ~/.bash_profile ~/.bash_profile.backup

% echo export GOPATH=$HOME/go >> ~/.bash_profile

% source ~/.bash_profile

% cd $GOPATH/bin

% ./gotour

これで実行できる