Re: How to generate binary python?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Gabriel Genellina

    Re: How to generate binary python?

    En Mon, 05 May 2008 19:43:24 -0300, David Anderson <zerty.david@gm ail.com>
    escribió:
    Hi, i'm comingo from Java and I'm wanting to know what in Python is the
    equivalent to the file.class in java, I am producing some apps that ar
    not
    open source, so I would like to share only the binaries, Both for Windows
    and for Linux, Can you suggest me anything?
    ..class files map roughly to .pyc files
    Note that Python generates and writes .pyc files automatically when you
    import a module, but not for the main script being executed.
    The standard way to generate a binary distribution is using distutils, see
    the Python wiki at <http://wiki.python.org/moin/DistributionUti lities>


    --
    Gabriel Genellina

  • BlueBird

    #2
    Re: How to generate binary python?

    On May 6, 6:29 am, "Gabriel Genellina" <gagsl-...@yahoo.com.a rwrote:
    En Mon, 05 May 2008 19:43:24 -0300, David Anderson <zerty.da...@gm ail.com>
    escribió:
    >
    Hi, i'm comingo from Java and I'm wanting to know what in Python is the
    equivalent to the file.class in java, I am producing some apps that ar
    not
    open source, so I would like to share only the binaries, Both for Windows
    and for Linux, Can you suggest me anything?
    >
    .class files map roughly to .pyc files
    Note that Python generates and writes .pyc files automatically when you
    import a module, but not for the main script being executed.
    The standard way to generate a binary distribution is using distutils, see
    the Python wiki at <http://wiki.python.org/moin/DistributionUti lities>
    >
    You can have a look at the following page for a very very short
    comparison of the different solutions available today:

    Comment

    Working...