Newbie Question About Python

Chris Barker chrishbarker at home.net
Thu Aug 23 13:02:02 EDT 2001


Fumari wrote:
> Ive been starting to learn Python by looking over some tuts linked from
> the offical site.  Now it seems to me Python is like perl as in the
> system must have perl installed in order to run the program?

yes.

is this
> correct, in python you right out the code then command line it?

no. Python byte-compiles the code, and then interprets it. IF a given
module is already byte compiled (*.pyc files) then it uses that
directly.

>Is
> there a way to make an exe file?

yes. There are a few ways to build a single executable from your Pythn
code. All of these methods (except Py2C, which seems to be in stalled
development) essentially bundle up your code with a Python interpreter.
This does make it easier to distribute a program to folks that are not
using Python for other things, or are using a different version.

look for freeze, Py2exe, and Gordon MacMillian's Installer on the web.
(i'm sure someone can provide you with link, I'm just feeling lazy at
the moment.

-Chris



-- 
Christopher Barker,
Ph.D.                                                           
ChrisHBarker at home.net                 ---           ---           ---
http://members.home.net/barkerlohmann ---@@       -----@@       -----@@
                                   ------@@@     ------@@@     ------@@@
Oil Spill Modeling                ------   @    ------   @   ------   @
Water Resources Engineering       -------      ---------     --------    
Coastal and Fluvial Hydrodynamics --------------------------------------
------------------------------------------------------------------------



More information about the Python-list mailing list