Go 언어를 MacOS에 설치
가정으로 Homebrew가 설치되어 있다고 가정합니다.
환경
설치 방법
버전 확인
$ brew search go
go
[email protected]
[email protected]
[email protected]
Go를 검색하면 설치 가능한 버전이 출력되므로 설치할 버전을 결정합시다.
설치
이번에는 1.12를 설치해 봅시다.
$ brew install [email protected]
PATH 설정
설치가 끝나면 ↓와 같은 메시지가 나옵니다.
If you need to have [email protected] first in your PATH run:
echo 'export PATH="/usr/local/opt/[email protected]/bin:$PATH"' >> ~/.bash_profile
이 메시지는 설치한 Go 바이너리의 PATH를 통과하도록 설정해야 한다는 것을 말합니다. 그래서 PATH를 통과합시다.~/.bash_profile
난잡한 것은 싫기 때문에 위의 메시지대로는 하지 않습니다만, 손쉽게 PATH를 통하고 싶은 분은 상기의 메세지중의 커멘드를 실행해 주세요.
그런 다음 GOPATH
를 설정해 봅시다.
$ vi ~/.bash_profile
export GOPATH="$HOME/go"
GO_BIN="/usr/local/opt/[email protected]/bin"
export PATH="$GO_BIN:$PATH"
$ source ~/.bash_profile
# ^vi^sourceを実行した方が早いかな...
확인
제대로 Go를 사용할 수 있는지 확인합시다.
$ which go
/usr/local/opt/[email protected]/bin/go
$ go version
go version go1.12.9 darwin/amd64
이것으로 끝납니다
Reference
이 문제에 관하여(Go 언어를 MacOS에 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/homines22/items/bbd787fa761df2640658
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
$ brew search go
go
[email protected]
[email protected]
[email protected]
$ brew install [email protected]
If you need to have [email protected] first in your PATH run:
echo 'export PATH="/usr/local/opt/[email protected]/bin:$PATH"' >> ~/.bash_profile
$ vi ~/.bash_profile
export GOPATH="$HOME/go"
GO_BIN="/usr/local/opt/[email protected]/bin"
export PATH="$GO_BIN:$PATH"
$ source ~/.bash_profile
# ^vi^sourceを実行した方が早いかな...
$ which go
/usr/local/opt/[email protected]/bin/go
$ go version
go version go1.12.9 darwin/amd64
Reference
이 문제에 관하여(Go 언어를 MacOS에 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/homines22/items/bbd787fa761df2640658텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)