如何为Intellij / PyCharm设置PYTHONSTARTUP脚本

时间:2017-02-23 14:49:13

标签: python intellij-idea pycharm startupscript

我尝试添加PYTHONSTARTUP环境变量:

enter image description here

我还尝试了一个自定义启动脚本:

enter image description here

但更令人惊讶的是 - 无效(npa别名无法识别):

enter image description here

出于一点绝望,我甚至尝试添加到interpreter options

enter image description here

没有做任何事情:(实际上Interpreter options应该做什么......?)

最后,我还查看了python的SDK设置 - 也没有任何可用的内容:

enter image description here

那么我们如何设置PYTHONSTARTUP脚本?

1 个答案:

答案 0 :(得分:2)

Intellij看起来不太可能有任何办法。相反,我已将以下内容添加到脚本的开头

execfile('/Users/boescst/.pythonstartup')

那是python2。对于python3,它有点不同 - 沿着

 exec(compile(open('/Users/boescst/.pythonstartup').read))