[Go] GoLand 설치(Go 설치)
1. Go 언어 설치하기
The Go Programming Language
Download Go Binary distributions available for Linux, macOS, Windows, and more. // You can edit this code! // Click here and start typing. package main import "fmt" func main() { fmt.Println("Hello, 世界") } Hello, World! Conway's Game of Life Fibonacci
golang.org
Go 언어 페이지로 접속하게 되면 다음과 같은 이미지가 띄게 됩니다.
Go 언어를 사용하기 위한 환경을 만들어주는 작업이 완료되게 됩니다.
2. GoLand 설치하기
https://www.jetbrains.com/ko-kr/go/download/#section=windows
다운로드 GoLand: JetBrains가 만든 Go 개발용 스마트 IDE
최신 버전 다운로드: GoLand (Windows, macOS, Linux)
www.jetbrains.com
window 비트 버전을 확인하여 '64bit'선택, PATH는 체크해 놓는것은 환경변수 설정을 하는 것이기 때문에 체크!
PATH설정은 해줬기 때문에 프로그램 사용 전 다시 시작!
필자는 평가판 체험 30일을 이용하기 위해서 'Evaluate for free'를 선택 하였습니다.
'Evaluate'버튼을 클릭하면 다음과 같은 창이 뜹니다. 그럼 이제 Go언어를 사용할 수 있는 환경 구축 완료!