Programming/Go
-
[Go] Golang 시작하기 2 (Visual Studio Code 세팅)Programming/Go 2021. 10. 19. 15:37
Golang을 사용하려고 할 때 여러가지 편집 툴을 확인 할 수 있습니다. 저는 그 중에서 Visual Studio Code로 Golang을 사용하려고 합니다. 사용하기 위해서 Visual Studio Code에 Golang을 세팅해봅시다! Visual Studio Code실행 전! 1. cmd에서 미리 Go 실행 파일을 설치하거나 2. Visual Studio Code에서 Go파일 생성 후 install하라고 경고 메시가 뜨면 install버튼을 눌러 설치하는 방법 두가지가 있습니다. 1번 방법은 아래 링크 걸어놨습니다~ 참고해서 설치하면 됩니다. [Go] Go 실행 파일 설치 ( go get ~ -> go install ~) 1. go get Golang을 다운로드 받고 실행 파일을 설치하려고 할 때..
-
[Go] Go 실행 파일 설치 ( go get ~ -> go install ~)Programming/Go 2021. 10. 19. 12:20
1. go get Golang을 다운로드 받고 실행 파일을 설치하려고 할 때 "go get golang.org/x/tools/cmd/... " 명령어를 사용해서 설치하라는 정보가 많이 나올겁니다. 저도 검색해가면서 설치해서 처음에는 go get~ 을 사용해서 실행 파일을 설치했습니다. 설치 파일이 다운로드는 됬지만 마지막에 go get: installing executables with 'go get' in module mode is deprecated. Use 'go install pkg@version' instead. For more information, see https://golang.org/doc/go-get-install-deprecation or run 'go help get' or 'go..
-
[Go] Golang 시작하기 1 ( go1.17.2 설치 )Programming/Go 2021. 10. 19. 10:43
Golang 을 사용하기 전에 먼저 해야할일! Golang을 설치해봅시다. https://golang.org/dl/ Downloads - The Go Programming Language Downloads After downloading a binary release suitable for your system, please follow the installation instructions. If you are building from source, follow the source installation instructions. See the release history for more information about Go releases golang.org 자신의 OS 환경에 따라 선택해주면 됩니다. ..