이 가이드는 Mac 컴퓨터에서 Golang을 설정하기 위해 수행한 가이드입니다.
다음을 사용합니다:
asdf-golang에서
asdf plugin add golang https://github.com/asdf-community/asdf-golang.git # install latest golang version asdf install golang latest # set the glboal version for golang to latest asdf global golang latest # reshim asdf reshim golang
GOROOT는 Go 설치 위치를 지정하는 환경 변수입니다
~/.zshrc에 다음을 추가하세요
. ~/.asdf/plugins/golang/set-env.zsh
이렇게 하면 터미널을 실행할 때마다 GOROOT 및 GOPATH가 설정됩니다
set-env.zsh가 수행하는 작업을 확인할 수 있습니다.
$ cat ~/.asdf/plugins/golang/set-env.zsh
asdf_update_golang_env() { local go_bin_path go_bin_path="$(asdf which go 2>/dev/null)" if [[ -n "${go_bin_path}" ]]; then export GOROOT GOROOT="$(dirname "$(dirname "${go_bin_path:A}")")" export GOPATH GOPATH="$(dirname "${GOROOT:A}")/packages" fi } autoload -U add-zsh-hook add-zsh-hook precmd asdf_update_golang_env
최신 ~/.zshrc를 사용하도록 현재 열려 있는 터미널을 업데이트하세요
source ~/.zshrc
GOROOT 및 GOPATH가 설정되어 있는지 확인하세요
> echo $GOROOT /Users/username/.asdf/installs/golang/1.22.5/go > echo $GOPATH /Users/username/.asdf/installs/golang/1.22.5/packages
위 내용은 MacOS에 Golang 설치의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!