The hindrance we have to ship python is the large size of the standard library. Is there a minimal python distribution or an easy way to pick and choose what we want from the standard library? The platform is linux.
相关问题
- how to define constructor for Python's new Nam
- streaming md5sum of contents of a large remote tar
- How to get the background from multiple images by
- Evil ctypes hack in python
- Correctly parse PDF paragraphs with Python
If all you want is to get the minimum subset you need (rather than build an
exe
which would constrain you to Windows systems), use the standard library module modulefinder to list all modules your program requires (you'll get all dependencies, direct and indirect). Then you canzip
all the relevant.pyo
or.pyc
files (depending on whether you run Python with or without the-O
flag) and just use that zipfile as yoursys.path
(plus a directory for all the.pyd
or.so
native-code dynamic libraries you may need -- those need to live directly in the filesystem to let the OS load them in as needed, can't be loaded directly from a zipfile the way Python bytecode modules can, unfortunately).Like Hank Gay and Alex Martelli suggest, you can use py2exe. In addition I would suggest looking into using something like IronPython. Depending on your application, you can use libraries that are built into the .NET framework (or MONO if for Linux). This reduces your shipping size, but adds minimum requirements to your program.
Further, if you are using functions from a library, you can use
from module import x
instead of doing a wildcard import. This reduces your ship size as well, but maybe not by too muchHope this helps
Have you looked at py2exe? It provides a way to ship Python programs without requiring a Python installation.