如何使 pydev 编译为 .pyo 而不是 .pyc
我正在使用安装了 Pydev 1.5.7 的 Eclipse。我也在使用Python 2.5。默认情况下,Pydev 编译为 .pyc。如何使其默认编译为 .pyo
I am using Eclipse with Pydev 1.5.7 installed. I am also using Python 2.5. By default, Pydev compiles to .pyc. How do I make it compile to .pyo by default
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您不能将 pydev 默认为 .pyo,但您始终可以在运行配置中将“-O”作为 VM 参数传递。
I don't think you can make pydev default to .pyo, but you can always pass "-O" as a VM argument in Run Configurations.
或者在运行配置对话框中添加
PYTHONOPTIMIZE = 2
作为环境变量。Or add
PYTHONOPTIMIZE = 2
as environment variable in the run configuration dialog.