我一直找不到任何东西,我不确定这是不是我应该问的地方......
但是我想在我创建的每个新项目中包含我的解释器的路径。原因是我在本地开发并将我的文件同步到linux服务器。每次创建新项目时都必须手动键入#! /users/w/x/y/z/bin/python
,这很烦人。也很高兴包含我90%的时间使用的某些导入。
我开始思考,在我制作音乐的程序中你可以设置一个默认的项目文件。这意味着,当您单击新项目时,它会设置您的配置方式(包括某些虚拟仪器,效果等)。
是否可以使用 IDE 执行此类操作,更具体地说, Pycharm ?
答案 0 :(得分:1)
您应该在主菜单中打开文件,然后点击默认设置,折叠编辑器,然后点击文件和代码模板< / strong>,在文件标签中点击 + 标志并创建新的模板,为新模板指定名称和扩展名,编辑框将您的模板内容放在您的案例中// Collect without
// initial collection.
assert [1,2,8] == [1,4,64].collect(Math.&sqrt)
assert [0,2,4,6] == (0..3).collect { it * 2 }
assert ['Groovy', 'Grails'] == [lang: 'Groovy', framework: 'Grails'].collect { it.value }
// Collect with initial collection argument.
assert [0, 1, 2, 3] == [2, 3].collect([0, 1]) { it }
assert [0, 3, 6, 9] == [2, 3].collect([0, 3], { it * 3})
assert ['Gradle', 'groovy', 'grails'] == ['Groovy', 'Grails'].collect(['Gradle']) { it.toLowerCase() }
assert ['m','r','h','a','k','i'] == [4, -3, 7, 5].collect(['m', 'r']) { (it + 100) as char }
应用和确定。在每次打开项目之后,选择该模板以包含所需的默认行。你可以制作一些模板。
答案 1 :(得分:0)
点击带有项目名称的右上角标签,然后转到Edit Configurations
,然后您可以更改解释器。