Is it possible to compile Python natively (beyond pyc byte code)?

后端 未结 4 1711
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-02 16:39

I wonder if it is possible to create an executable module from a Python script. I need to have the most performance and the flexibility of Python script, without needing to run

4条回答
  •  醉梦人生
    2021-02-02 16:58

    I think you can use jython to compile python to Java bytecode, and then compile that with GCJ.

提交回复
热议问题