728x90
요약 : Golang 1.17 을 설치하면 깔끔하게 해결된다.
https://nextgentips.com/2021/12/11/how-to-install-go-1-17-on-ubuntu-20-04/
나의 경우 apt-get install golang 설치 시, 1.13 버전으로 설치되서 진행했을 때 생긴 문제였다.
1. package gopkg.in/yaml.v2: exit status 128
ca-certificates 라는 리눅스에서 인증 문제로 생기는 에러로, 다음의 내용을 추가하면 된다고 해서 해봤더니,
다음 에러가 생겼다.
sudo apt-get update && sudo apt-get install ca-certificates libgnutls30 -y
2. /root/go/src/golang.org/x/net/http2/transport.go:417:45: undefined: os.ErrDeadlineExceeded
Go 언어를 업데이트하면 해결된다.
참고
728x90
'Programming Language > Go' 카테고리의 다른 글
[Go] 테이블 주도 테스트란? Table Driven Test (0) | 2022.03.23 |
---|---|
[Golang] 자료형, 배열, 슬라이스 (0) | 2022.02.23 |
[Go] Gin 에러 Error:Field validation for 'Value' failed on the 'required' tag (0) | 2022.02.22 |
[Go] $GOPATH/go.mod exists but should not 에러 (0) | 2022.02.17 |
[Go] Go 공부 시작 (0) | 2022.02.17 |