最小化 python 发行版大小
我们发布 python 的障碍是标准库的体积太大。 是否有一个最小的Python发行版或者一个简单的方法来选择我们想要的东西 标准库? 平台是linux。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您想要的只是获得所需的最小子集(而不是构建一个将您限制在 Windows 系统上的
exe
),请使用标准库模块 modulefinder 列出您的程序所需的所有模块(您将获得所有直接和间接的依赖项)。然后您可以zip
所有相关的.pyo
或.pyc
文件(取决于您运行Python时是否带有-O
标志),然后使用该 zip 文件作为您的sys.path
(加上所有.pyd
或.so
本机的目录- 编写您可能需要的动态库——这些动态库需要直接存在于文件系统中,以便操作系统根据需要加载它们,不幸的是,它们不能像 Python 字节码模块那样直接从 zip 文件加载。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).你看过py2exe吗?它提供了一种无需安装 Python 即可发布 Python 程序的方法。
Have you looked at py2exe? It provides a way to ship Python programs without requiring a Python installation.
就像 Hank Gay 和 Alex Martelli 建议的那样,您可以使用 py2exe。此外,我建议考虑使用 IronPython 之类的东西。根据您的应用程序,您可以使用 .NET 框架内置的库(如果适用于 Linux,则使用 MONO)。这会减少您的运输尺寸,但会增加您的计划的最低要求。
此外,如果您使用库中的函数,则可以使用
from module import x
而不是进行通配符导入。这也会减少您的船舶尺寸,但可能不会太多希望这会有所帮助
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