本文介绍了如何使用 Pyserial 使 Windows 可执行文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试制作 Stackless Python 2.6 程序的可执行文件.安装文件是

I am trying to make an executable of a Stackless Python 2.6 program. The setup file is

from distutils.core import setup
import py2exe

setup(console=['controller.py'])

我用

python setup.py py2exe

但是,当我尝试运行它时,它引发了一个 ImportError 并说没有名为 serial 的模块.当我尝试时:

However, when I try to run it, it raises an ImportError and says that there is no module named serial. When I try:

python setup.py py2exe --includes serial

python setup.py py2exe --includes pyserial

构建失败并出现导入错误.你有什么想法吗?

the build fails with an ImportError. Do you have any ideas?

推荐答案

有同样的问题.将 pyserial 升级到 2.5 解决了这个问题:没有额外包含"的 exec 构建包含 pyserial.

Had same issue. Upgrading pyserial to 2.5 solved the problem: exec built without additional "includes" contains pyserial.

这篇关于如何使用 Pyserial 使 Windows 可执行文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-15 23:37