How can I compile and run a python file (*.py extension)?
|
|
|||||||||||||||||
|
|
|
You have to have python installed first. It will automatically compile your file into a .pyc binary, and then run it for you. It will automatically recompile any time your file changes. |
||
|
|
|
|
Python compiles its files to bytecode before executing them. That means you have to have a Python interpreter installed on the target machine. If you don't want to install Python on the target machine use py2exe, py2app or something similar. |
||||||
|
|
|
To add to Paul McMillan's answer, if you are on Windows and you have Python installed, then any files ending with the extension ".py" should be associated with the
In *nix, you can begin the file with
In *nix systems, if the first two characters of a file are |
||
|
|
|
On most Unix-like systems, you can use the shebang to tell the operating system which interpreter should be called. You simply put
in the first line of your file, where of course you have to replace "/path/to/" with the path you have on your system. In most cases this would be "/usr/bin/python" or "/usr/local/bin/python". On unix systems you could also look for the path with
or invoke the command
to find the path. You can then run your program with the command
If it tells you that you do not have permission to do so, you have to use the command
|
|||
|
|
|
|
If you want to transform a python source file into a double-clickable |
||
|
|
|
|
Python is an interpreted language, so you don't need to compile it; just to run it. As it happens, the standard version of python will compile this to "bytecode", just like Java etc. does, and will save that (in .pyc files) and run it next time around, saving time, if you haven't updated the file since. If you've updated the file, it will be recompiled automatically. You can also run python with a -O flag, which will generate .pyo files instead of .pyc. I'm not sure it makes much difference. If speed is important, use psyco. And yes, on Unix (including Linux, BSD, and Mac OS X, or in a unix shell on windows) you can use a shebang line at the top of the file to make the file automatically run using python. On windows, the equivalent is to associate .py files with python.exe, and then make sure your PATHEXT environment variable includes ".PY" extensions. However, for windows, you more likely want to write a gui program in python (possibly using PyQT4 and ERIC4) which has a .pyw file as its main script, and has .pyw associated with pythonw (which comes with python on windows). This will let you run python scripts on windows just like other GUI programs. For publishing and distribution, you probably want to compile to an executable file using something like py2exe, as others mentioned. |
||
|
|
|
|
If you just want to compile sources, without running them, you can do this
this command will compile python code in that directory recursively compileall script is usually located in directory like
i.e. As Lulu suggests, you should make sure that resulting .pyc and .pyo files are executable by the users you care about. compileall can also be used as a module
|
|||
|
|
