bash 终端和 Goland IDE 中的不同 GOPATH
Different GOPATH in bash terminal and in Goland IDE
我已经更改了 GOPATH
,为了使更改持久化,我在 .bashrc
文件中添加了以下行:
export GOPATH=$HOME/workspaces/go_projects
重新启动后,当我在 bash 终端中 运行 go env
时,我看到了正确的路径,但是当我在 GoLand IDE 终端中检查时,我仍然看到旧路。
有什么想法吗?
我 运行 宁在 ubuntu 18.04.
您需要检查 GoLand 的 GOPATH 设置 IDE。
转到 Settings > Go > GOPATH
并检查设置。
以下是我的系统的片段。
确保您选择了 "Use GOPATH that's defined in system environment"。
我已经更改了 GOPATH
,为了使更改持久化,我在 .bashrc
文件中添加了以下行:
export GOPATH=$HOME/workspaces/go_projects
重新启动后,当我在 bash 终端中 运行 go env
时,我看到了正确的路径,但是当我在 GoLand IDE 终端中检查时,我仍然看到旧路。
有什么想法吗?
我 运行 宁在 ubuntu 18.04.
您需要检查 GoLand 的 GOPATH 设置 IDE。
转到 Settings > Go > GOPATH
并检查设置。
以下是我的系统的片段。
确保您选择了 "Use GOPATH that's defined in system environment"。