Python 安装管理器
通常,当我安装由 python 文件制成的 .exe 文件时,我会得到一个蓝色的安装管理器,并带有“pythonpowered”徽标。这位经理叫什么名字?我想用它来制作一些可安装的 python 文件。
Often when I install .exe files made from python files I get an installation manager that is blue and has the logo "python powered". What is the name of this manager? I'd like to use it to make some installable python files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
更准确地说,它可能是 distutils bdist_winsinst 命令或 bdist_msi 命令的产品,也可能是 py2exe(基于 distutils 构建的第三方项目)的产品。
More precisely, it may be the product of the distutils bdist_winsinst command, or the bdist_msi command, or maybe the product of py2exe, a third-party project building on distutils.
这称为 distutils。
This is called distutils.