# Golang 學習 ## 坑 - main.go:4:4: package apple is not in GOROOT (/usr/local/go/src/apple) - 版本 : 1.16.5 - 原因 : 某個 package 在 GOROOT 中找不到 - 解法 : ```go env -w GO111MODULE=off``` - 解釋 : 在還沒有做上述設定前,golang 只會在 GOROOT 找 package,或者是使用 go get 從網路上下載的 package,做完上述設定之後, golang 才會到 GOPATH 中尋找 package ## Go 的並發:Goroutine 與 Channel 介紹 - [參考網站](https://peterhpchen.github.io/2020/03/08/goroutine-and-channel.html) ## 參考文件 - package 介紹:[https://calvertyang.github.io/2019/11/12/a-beginners-guide-to-packages-in-golang/](https://) - go mod : [https://ithelp.ithome.com.tw/articles/10217414](https://) -