# 01 创建Golang开发环境

By [Robin](https://paragraph.com/@robin-8) · 2023-02-22

---

[https://golang.google.cn/dl/](https://golang.google.cn/dl/)

    wget https://golang.google.cn/dl/go1.20.1.linux-amd64.tar.gz
    rm -rf /usr/local/go && tar -C /usr/local -xzf go1.20.1.linux-amd64.tar.gz
    export PATH=$PATH:/usr/local/go/bin
    
    $ go version
    
    go env -w GOPROXY=https://goproxy.cn,direct
    go env -w GO111MODULE=on

---

*Originally published on [Robin](https://paragraph.com/@robin-8/01-golang)*
