본문 바로가기

Go

go 패키지 설치, 관리

[1. 개요]

go 에서 외부 패키지 관리를 위한

get, install 에 대해서 정리한다.

 

go version 이 1.17.3 이하에서는 확인 안됨.

 

1.16 버전 이후로~~~

 

 

GO111MODULE=off

 

go env -w GO111MODULE=off

=> 원하는 의도되로 잘 됨

=> 단, 버전을 명시할 수 없다.

 

go env -w GO111MODULE=on

 

go env -w GO111MODULE=

 

go env -w GO111MODULE=auto

 

 

github.com/segmentio/kafka-go

github.com/segmentio/kafka-go@v0.4.33

 

go get has been deprecated for installing binaries since Go 1.17 and will be become impossible in Go 1.18. If you are using Go 1.16 or above, you should use instead:

 

 

.a 파일

These files contain the compiled package binary code, along with debug symbols and source information.

 

 

git tag...

'Go' 카테고리의 다른 글

go mod  (0) 2022.08.10
GO111MODULE  (0) 2022.08.10
ubuntu go version update  (0) 2022.04.06
cgo  (0) 2022.03.19
Slice length, capacity and append, copy function  (0) 2022.02.08