golang开发环境快速搭建centos版本
星期二, 2019-11-12 | Author: Lee | golang | 1,565 views
1.用golang写过一些工具,每次要开发工具的时候还要去弄下对应的环境,记录下,好随时翻阅
这里使用的是centos8,window版本直接配置即可
2.官网下载二进制安装包,现在有国内可以访问的地址了
wget https://dl.google.com/go/go1.13.4.linux-amd64.tar.gz mkdir -p /usr/local/golang/opt/ tar -C /usr/local/golang/opt/ -zxvf go1.13.4.linux-amd64.tar.gz mkdir -p /usr/local/golang/repos/gopath/ |
3.设置环境变量填写如下地址
vi /etc/profile export GOROOT=/usr/local/golang/opt/go export GOPATH=/usr/local/golang/repos/gopath export PATH=$PATH:$GOROOT/bin source /etc/profile go version |
4.编写hello.go文件测试
cd /usr/local/golang/repos/gopath vi hello.go package main import "fmt" func main(){ fmt.Printf("hello,world\n"); } |
5.运行及编译
go run hello.go go build hello.go ./hello |
6.解决不翻墙go get之类的net包问题
mkdir -p $GOPATH/src/golang.org/x/ cd $GOPATH/src/golang.org/x/ yum install git git clone https://github.com/golang/net.git net go install net |
执行go install之后没有提示,就说明安装好了。
7.后续就各种api 开发吧
https://golang.google.cn/doc/
文章作者: Lee
本文地址: https://www.pomelolee.com/1950.html
除非注明,Pomelo Lee文章均为原创,转载请以链接形式标明本文地址
No comments yet.
Leave a comment
Search
相关文章
热门文章
最新文章
文章分类
- ajax (10)
- algorithm-learn (3)
- Android (6)
- as (3)
- computer (85)
- Database (30)
- disucz (4)
- enterprise (1)
- erlang (2)
- flash (5)
- golang (3)
- html5 (18)
- ios (4)
- JAVA-and-J2EE (186)
- linux (143)
- mac (10)
- movie-music (11)
- pagemaker (36)
- php (50)
- spring-boot (2)
- Synology群晖 (2)
- Uncategorized (6)
- unity (1)
- webgame (15)
- wordpress (33)
- work-other (2)
- 低代码 (1)
- 体味生活 (40)
- 前端 (21)
- 大数据 (8)
- 游戏开发 (9)
- 爱上海 (19)
- 读书 (4)
- 软件 (3)