ubuntu go 개발 환경 구축

4219 단어
액세스:https://golang.org/dl/
다운로드12.4.linux-amd64.tar.gz
 
wget https://dl.google.com/go/go1.12.4.linux-amd64.tar.gz

sudo tar -zxvf go1.12.4.linux-amd64.tar.gz -C /opt

설치 성공 확인
cd /opt/go/bin

./go version

go version go1.12.4 linux/amd64

환경 변수 설정
vi /etc/profile

export GOROOT=/opt/go
export GOPATH=/home/ubuntu/go
export GOPROXY=https://goproxy.io
export GOARCH=amd64
export GOOS=linux export GOTOOLS=$GOROOT/pkg/tool export PATH=$PATH:$GOROOT/bin:$GOPATH/bin source /etc/profile

그중에서도 GOPROXY는 Golang을 해결할 수 있다.org/x/... 시리즈 패키지를 다운로드할 수 없는 문제.
HelloWorld 파일을 작성하여 운영 환경을 테스트합니다.
package main
import "fmt"
func main(){ fmt.Println("hello,world!") }
go run hello.go
go build hello.go 

생성mod 파일
go mod init hello

Gin으로 간단한 http 서비스 구현
import (
    "gopkg.in/gin-gonic/gin.v1"
    "net/http"
)

func main(){ router := gin.Default() router.GET("/", func(c *gin.Context) { c.String(http.StatusOK, "Hello World") }) router.Run(":8000") }

직접 컴파일 실행
go run hello

인용된 가방이 자동으로 다운로드된 걸 볼 수 있어요.
go: finding github.com/gin-contrib/sse latest
go: finding github.com/gin-gonic/gin/render latest
go: finding github.com/gin-gonic/gin/binding latest
go: finding github.com/gin-gonic/gin/json latest
go: finding golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223
go: downloading golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223
go: finding gopkg.in/go-playground/validator.v8 v8.18.2
go: finding github.com/ugorji/go/codec latest
go: finding github.com/golang/protobuf/proto latest
go: finding gopkg.in/yaml.v2 v2.2.2
go: downloading gopkg.in/go-playground/validator.v8 v8.18.2
go: downloading gopkg.in/yaml.v2 v2.2.2
go: finding github.com/ugorji/go v1.1.4
go: finding github.com/golang/protobuf v1.3.1
go: downloading github.com/ugorji/go v1.1.4
go: downloading github.com/golang/protobuf v1.3.1
go: extracting gopkg.in/go-playground/validator.v8 v8.18.2
go: extracting gopkg.in/yaml.v2 v2.2.2
go: extracting github.com/golang/protobuf v1.3.1
go: extracting github.com/ugorji/go v1.1.4
go: extracting golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223
go: finding gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405

HTTP 서비스가 정상적으로 시작되어 브라우저를 통해 액세스할 수 있습니다.
[GIN-debug] [WARNING] Now Gin requires Go 1.6 or later and Go 1.7 will be required soon.

[GIN-debug] [WARNING] Creating an Engine instance with the Logger and Recovery middleware already attached.

[GIN-debug] [WARNING] Running in "debug" mode. Switch to "release" mode in production.
 - using env:   export GIN_MODE=release - using code: gin.SetMode(gin.ReleaseMode) [GIN-debug] GET / --> main.main.func1 (3 handlers) [GIN-debug] Listening and serving HTTP on :8000

전재 대상:https://www.cnblogs.com/sweetsunnyflower/p/11377935.html

좋은 웹페이지 즐겨찾기