Py2Exe + FTDI驱动程序
是否有可能以某种方式将 FTDI 驱动程序包含在 py2exe 安装程序中?如果没有,有什么方法可以将两者结合在一个简单的安装程序中吗?
Is it at all possible to somehow include the FTDI driver in a py2exe installer? If not, are there any ways to combine the two together in one easy installer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 py2exe 的
data_files
选项将 FTDI 驱动程序文件夹包含在您的发行版中。您可以运行这样的代码,使驱动程序对您的应用程序可见,即使它们没有安装在 system32 中:
当然,一旦插入设备,Windows 将要求提供驱动程序。至少您可以将其指向您的应用程序的安装位置以找到它。
Include the FTDI driver folders in your distribution using py2exe's
data_files
option.You can run code like this to make the drivers visible to your application even if they aren't installed in system32:
Of course, once a device is plugged in, Windows will ask for a driver. At least you can point it to where your app is installed to find it.