继续使用IntelliJ:缺少SDK /环境变量

时间:2015-06-07 18:45:31

标签: macos intellij-idea go environment-variables

我想学习Go并尝试在IntelliJ IDEA 14.1.3上设置Go plugin for IntelliJ。我正在运行OSX Yosemite(10.10.3)。

我使用Brew安装了brew install go

我在浏览新项目向导时无法设置SDK。 Project SDK为空,当我单击“配置”并导航到安装的libexec文件夹(/usr/local/Cellar/go/1.4.2/libexec/)时,Project SDK永远不会显示在框中。如果我单击向导,它会警告我没有指定SDK,然后警告无法检测到GOROOTGOPATH env变量为空。

似乎有quite a few ways to set environment variables on OSX。我创建了一个~/Library/LaunchAgents/environment.plist文件:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
  <key>Label</key>
  <string>my.startup</string>
  <key>ProgramArguments</key>
  <array>
    <string>sh</string>
    <string>-c</string>
    <string>
    launchctl setenv GOROOT "/usr/local/Cellar/go/1.4.2/libexec/"
    launchctl setenv GOPATH "/Users/awoolford/golang/"
    </string>

  </array>
  <key>RunAtLoad</key>
  <true/>
</dict>
</plist>

如果我运行launchctl load -w ~/Library/LaunchAgents/environment.plist,则加载环境变量:

$ launchctl getenv GOPATH
/Users/awoolford/golang/

$ launchctl getenv GOROOT
/usr/local/Cellar/go/1.4.2/libexec/

我希望IntelliJ能够识别这些环境变量,并且我能够在~/golang/中创建项目。

你能看出我做错了吗?

0 个答案:

没有答案