英文:
How to open goland from specific path?
问题
这实际上是一个简单的问题,我一直在研究如何在Windows上使用类似code .
这样的命令来打开GoLand。请帮忙吗?
英文:
This is actually a straightforward question, have been researching on how to use such command like code .
for VSCode , but with GoLand in Windows. Any help please?
答案1
得分: 4
GoLand的工作方式与VSCode类似,可以参考文档中的说明:
goland64 .
但是,为了使其正常工作,包含goland64.exe
的文件夹需要在您的path中。您可以通过指定可执行文件的完整路径来测试,而无需将文件夹添加到您的path中;在我的电脑上,路径是:
"C:\Program Files\JetBrains\GoLand 2021.3\bin\goland64.exe" .
英文:
GoLand works in a similar way to VSCode as covered in the docs:
goland64 .
However for this to work the folder with goland64.exe
will need to be in your path. You can test this without adding the folder to your path by specifying the full path to the executable; on my PC this is:
"C:\Program Files\JetBrains\GoLand 2021.3\bin\goland64.exe" .
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论