개발일기

Go - Go 언어 설치하기 [윈도우, Mac, Linux] 본문

프로그래밍 언어/Go

Go - Go 언어 설치하기 [윈도우, Mac, Linux]

Flashback 2022. 2. 4. 10:19
728x90
반응형

1. 공식 홈페이지 이용하기

https://go.dev/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

go.dev

Go 공식 홈페이지에서 OS에 따라 msi, pkg 파일을 다운하여 설치할 수 있다.

 

2. Choco 사용하기 (Window)

choco install golang -y

 

3. Brew 사용하기 (Mac)

brew install go

 

3. CentOS에서 설치하기

yum install golang -y
go version # 버전 확인하기
728x90
반응형

'프로그래밍 언어 > Go' 카테고리의 다른 글

Go - 배열 사용법  (0) 2022.03.15
Go - 함수의 사용법 및 응용  (0) 2022.03.15
Go - for, for-range 반복문  (0) 2022.03.14
Go - 조건문 if / switch  (0) 2022.03.11
Go - 변수 선언과 사용  (2) 2022.02.22
Comments