简体   繁体   English

Go 安装不使用 zsh

[英]Go install not working with zsh

I feel like an idiot because I've installed this before on macOS and OSX but for some reason I can't see what I'm doing wrong.我觉得自己像个白痴,因为我之前在 macOS 和 OSX 上安装过这个,但出于某种原因我看不出我做错了什么。 Please help,!!请帮忙,!! I've created a directory, ~/go , which will be my workspace.我创建了一个目录~/go ,它将成为我的工作区。 When I run go env from my home directory I get zsh: command not found: go and I know it's because of the following files.当我从我的主目录运行go env时,我得到zsh: command not found: go我知道这是因为以下文件。 What is wrong in my configuration?我的配置有什么问题?

~/.bash_profile: ~/.bash_profile:

export PATH=$PATH:/usr/local/go/bin

~/.zshrc: ~/.zshrc:

export PATH=$PATH:/usr/local/go/bin

Below config is working for me, 下面的配置为我工作,

in ~/.zshrc ~/.zshrc

export GOPATH=$HOME/golang
export GOROOT=/usr/local/opt/go/libexec
export GOBIN=$GOPATH/bin
export PATH=$PATH:$GOPATH
export PATH=$PATH:$GOROOT/bin

You can see the configured details as below then 您可以看到如下配置的详细信息

go env

GOARCH="amd64"
GOBIN="/Users/my-name/golang/bin"
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="darwin"
GOPATH="/Users/my-name/golang"
GORACE=""
GOROOT="/usr/local/opt/go/libexec"
GOTOOLDIR="/usr/local/opt/go/libexec/pkg/tool/darwin_amd64"
GCCGO="gccgo"
CC="clang"
GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/6q/h6nchrdj49zgjfcp8wstj94r0000gn/T/go-build874871088=/tmp/go-build -gno-record-gcc-switches -fno-common"
CXX="clang++"
CGO_ENABLED="1"
PKG_CONFIG="pkg-config"
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"

Installing go through brew didn't add the global ENV path in the shell profile.通过 brew 安装go并没有在 shell 配置文件中添加全局ENV路径。 So, I had to manually add it like in the ~/.zshrc file like the following and that was it!所以,我不得不像下面这样在~/.zshrc文件中手动添加它,就是这样!

export PATH="$PATH:$(go env GOPATH)/bin"

Note: If you are using bash or other shell, the name of the profile file would be different!注意:如果您使用的是bash或其他 shell,配置文件的名称会有所不同!

If you installed on Mac OS not with home-brew but with the macOS package installer, your GOBIN be in /usr/local/go and GOPATH in $HOME/go , finally in ~/.zshrc : 如果您不是使用自制软件而是使用macOS软件包安装程序在Mac OS上安装的,则您的GOBIN/ usr / local / go中,GOPATH$ HOME / go中 ,最后在~/.zshrc

  export GOPATH=$HOME/go
  export GOROOT=/usr/local/go
  export GOBIN=$GOPATH/bin
  export PATH=$PATH:$GOPATH
  export PATH=$PATH:$GOROOT/bin

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM