之前在ubuntu上安装go环境, 居然还去下载包, tar解压, 设置环境变量, 其实, 完全没有必要, 一个命令就搞定。 树莓派也是如此:

sudo apt-get install golang
       写个程序, 看下结果:
pi@raspberrypi:~/taoge $ cat test.go 
package main  
  
import "fmt"  
  
func main(){  
    fmt.Println("hello world")  
    fmt.Println("This is my first Go code")  
}  
pi@raspberrypi:~/taoge $ 
pi@raspberrypi:~/taoge $ 
pi@raspberrypi:~/taoge $ 
pi@raspberrypi:~/taoge $ go run test.go 
hello world
This is my first Go code
pi@raspberrypi:~/taoge $ 
       sudo halt关树莓派, 睡觉。