英文:
How to use LiteIDE for a Go project?
问题
我已经安装了用于Go的LiteIDE IDE。我创建了一个新的Go项目,但是当我尝试运行它时,我得到了以下错误信息:
<action id="Run" cmd="$(TARGETPATH)" args="$(TARGETARGS)">
<start=" " workdir=""/>
<error msg="process failed to start" />
</action>
我猜我需要配置LiteIDE,但是我不知道如何配置,也没有找到相关的文档。
英文:
I've installed the LiteIDE IDE for Go. I create a new Go project, but I when I try to run it I get:
<action id="Run" cmd="$(TARGETPATH)" args="$(TARGETARGS)">
<start=" " workdir=""/>
<error msg="process failed to start" />
</action>
I guess I need to configure LiteIDE, but I don't how and I did not find any relevant documentation.
答案1
得分: 2
- 在YOUR_PATH中创建Go1项目。
- 导入
项目(在项目窗口中),并将自定义GOOPATH设置为YOUR_PATH。 - 在YOUR_PATH上下文菜单中设置活动项目。
英文:
Something like that:
- Create Go1 Project in YOUR_PATH
- Import <GOPATH> project (in projects window) and set custom GOOPATH to YOUR_PATH.
- Set active project in the context menu on YOUR_PATH.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论