Py2Exe + FTDI驱动程序

发布于 2024-09-27 03:16:20 字数 75 浏览 2 评论 0原文

是否有可能以某种方式将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哭了丶谁疼 2024-10-04 03:16:20

使用 py2exe 的 data_files 选项将 FTDI 驱动程序文件夹包含在您的发行版中。

您可以运行这样的代码,使驱动程序对您的应用程序可见,即使它们没有安装在 system32 中:

os.environ['PATH'] = '%s;%s' % (os.environ['PATH'], os.path.abspath('./driver/i386'))
os.environ['PATH'] = '%s;%s' % (os.environ['PATH'], os.path.abspath('./driver/amd64'))

当然,一旦插入设备,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:

os.environ['PATH'] = '%s;%s' % (os.environ['PATH'], os.path.abspath('./driver/i386'))
os.environ['PATH'] = '%s;%s' % (os.environ['PATH'], os.path.abspath('./driver/amd64'))

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文