可以 py2exe 创建独立的可执行文件,甚至需要 win32com 包?
py2exe
win32com
我用谷歌搜索/搜索过,但无济于事。
Can py2exe create standalone executables even ones requiring the win32com package?
I've googled / searched SO to no avail.
我已将 py2exe 用于依赖于 win32com 以及 pysvn。效果很好,没有任何麻烦。
pysvn
那是使用 Python 2.5 和更高版本的 2.6。请注意,py2exe 不支持 Python 3.x 。
I've used py2exe for a project that depended on win32com as well as pysvn. It worked fine, no hassles.
That was using Python 2.5 and later 2.6. Note that py2exe doesn't support Python 3.x.
是的,可以。但是您可能需要添加对应用程序所需的 DLL 的引用。 检查 http://www.py2exe.org/index.cgi/WorkingWithVariousPackagesAndModules .它包含构建使用 win32com 的 Python 应用程序的有用资源。
另外,如果您使用类型库,请检查您要部署的所有 Windows 版本上的版本是否相同。否则,您的应用程序可能会失败
Yes, it can. But you may need to add a refereneces to DLL that your application needs. Check the bottom of http://www.py2exe.org/index.cgi/WorkingWithVariousPackagesAndModules . It contains useful resources to build Python apps that uses win32com.
Also if you use typelibs, check that the version is the same on all Windows versions you want to deploy. Otherwise, your app may fail
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
我已将
py2exe
用于依赖于win32com
以及pysvn
。效果很好,没有任何麻烦。那是使用 Python 2.5 和更高版本的 2.6。请注意,
py2exe
不支持 Python 3.x 。I've used
py2exe
for a project that depended onwin32com
as well aspysvn
. It worked fine, no hassles.That was using Python 2.5 and later 2.6. Note that
py2exe
doesn't support Python 3.x.是的,可以。但是您可能需要添加对应用程序所需的 DLL 的引用。
检查 http://www.py2exe.org/index.cgi/WorkingWithVariousPackagesAndModules .它包含构建使用 win32com 的 Python 应用程序的有用资源。
另外,如果您使用类型库,请检查您要部署的所有 Windows 版本上的版本是否相同。否则,您的应用程序可能会失败
Yes, it can. But you may need to add a refereneces to DLL that your application needs.
Check the bottom of http://www.py2exe.org/index.cgi/WorkingWithVariousPackagesAndModules . It contains useful resources to build Python apps that uses win32com.
Also if you use typelibs, check that the version is the same on all Windows versions you want to deploy. Otherwise, your app may fail