Re: Can I write a binary windows executable with Python?
walterbyrd wrote:
I have heard about Pysco. But does create a single executable that can
run without Python being installed? Or does that just compile the
libraries?
Psyco is a kind of JIT (just in time) optimizer for Python. It's limited
to i386 compatible CPUs (aka X86 architecture). It has nothing to do
with standalone executables.
You are lookin for py2exe. It's a program which creates standalone
bundles of Python applications. The bundles contains the python core
library, a startup executable and all additional dlls and Python
scripts. The bundle runs w/o an installed Python interpreter.
Christian
.
Relevant Pages
- Re: Pythons garbage collection was Re: Python reliability
... >>> Has anyone looked into using a real GC for python? ... A strategy based on PURE reference counting just ... > extensions, and with correct implementations, both refcounting and GC are ... > Lucky those existing C libraries were written to use python's refcounting! ... (comp.lang.python) - Re: Python component model
... other libraries. ... application domains like Scientific Python. ... dearth of Web frameworks as a benefit, I think you'd see less activity ... near-blessing of Django: it's almost nonsensical. ... (comp.lang.python) - Re: Why Lisp is not popular with average programmers
... are multiple implementations of Common Lisp, the "fragmentation" of which you speak can simply not exist in in Common Lisp ... ... the implementations differ on these. ... But, there are compatibility libraries that you can use rather than your implementation's primitives, and have your code portable across implementations. ... Python seems horribly "fragmented" as well. ... (comp.lang.lisp) - Re: How Common Lisp sucks
... web server up and running using Python takes substantially less effort ... You're right, it's not an advantage of the language itself, but it's ... the effort required to locate the right libraries ... I think a lot of the advances that happen in programming languages ... (comp.lang.lisp) - Re: Why Lisp is not popular with average programmers
... If I want SMTP client support in my script, Python has it out of the box. ... In Python, the whole thing seems packaged together into a coherent whole, whereas in Lisp, it seems more like an exercise in trying to put square pegs in round holes. ... Libraries does not a language make. ... (comp.lang.lisp) |
|