有关更多详细信息,请参阅:“ go help gopath”

时间:2019-01-10 07:46:35

标签: macos go

我正在学习Go,但遇到了一些问题。

我关注

go install

但是有一个错误:

no install location for directory /Users/skan/documents/study/golang/src/section1 outside GOPATH

For more details see: ’go help gopath’

所以我返回到我的.bash / profile

这是我的.bash /个人资料

# added by Anaconda3 2018.12 installer
# >>> conda init >>>
# !! Contents within this block are managed by ’conda init’ !!
__conda_setup=”$(CONDA_REPORT_ERRORS=false ’/anaconda3/bin/conda’ shell.bash hook 2> /dev/null)”
if [ $? -eq 0 ]; then
\eval ”$__conda_setup”
else
if [ -f ”/anaconda3/etc/profile.d/conda.sh” ]; then
. ”/anaconda3/etc/profile.d/conda.sh”
CONDA_CHANGEPS1=false conda activate base
else
\export PATH=”/anaconda3/bin:$PATH:$GOPATH:$GOBIN”
fi
fi
unset __conda_setup
# <<< conda init <<<
export GOPATH="/Users/skan/Documetns/study/golang"
export GOBIN=$GOPATH/bin

1 个答案:

答案 0 :(得分:1)

尝试:

mkdir -p $GOPATH/bin

您看到的错误是安装目录不存在,因此install无法执行任何操作。


此外,这里还有一个错字:

export GOPATH="/Users/skan/Documetns/study/golang"

同样的道理,但是,尝试Documents