프로젝트용 폴더 생성
main.go 파일 생성
1 2 3 4 5 |
package main import "fmt" func main() { fmt.Println("hello world") } |
vscode 로 폴더 열기
F5 로 실행 -> Error
dlv 파일이 없어서 생긴 문제 인것 같아서 일단 delve 패키지 install
1 |
brew install delve |
하지만
1 |
go: go.mod file not found in current directory or any parent directory; see 'go help modules' |
터미널에서
1 |
go env -w GO111MODULE=auto |
F5 로 실행 및 디버깅
그리고 vscode의 환경설정에 아래 코드 추가
1 |
"go.toolsManagement.autoUpdate": true, |