sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make sudo apt update && sudo apt install ubuntu-make sudo apt install git umake go go-lang # 再起動 # 環境設定確認 go env mkdir go cd go mkdir bin # GOPATH追加 gedit ~/.profile # 最終行に追加 # 1.8からGOPATH不要 # export GOPATH=$HOME/go PATH=$GOPATH/bin:$PATH source ~/.profile
{ "editor.fontFamily": "Source Han Code JP M", "editor.fontSize": 14, "editor.renderWhitespace": "all", "editor.renderIndentGuides": true, "editor.formatOnSave": true, "files.trimTrailingWhitespace": true, }
VSCodeのGOをインストールすると入れてくれる
# VSCodeのデバッグ用 go get github.com/derekparker/delve/cmd/dlv go get -u github.com/alecthomas/gometalinter gometalinter --install
package main import "fmt" func main() { fmt.Println("hello world") }