我正在开发一个使用 pySerial 从物理规模读取数据的快速项目。我使用 pygame 作为简单 GUI 的前端。我正在尝试使用 py2exe 来部署项目。
该项目在通过 python 运行时工作,打开串行并按预期读取它。
我的py2exe安装脚本编译的可执行文件运行正常(没有导入错误)
可执行文件未正确打开串行。除非我埋葬找不到串行端口时引发的异常,否则程序会在此时关闭。
将所有串行代码虚拟化或嵌套在 try / catches 中,可执行文件可以正常工作。pygame 或其余代码可能没有问题。
这是来自main.py的相关代码,这是唯一的文件:
import os, sys
import pygame
from pygame.locals import *
if not pygame.font: print 'Warning, fonts disabled'
#serial
import serial
import io
import time
...
def initSerial():
try:
#The port is hard coded for now
port = 11
ser = serial.Serial(port-1)
ser.baudrate = 2400
ser.timeout = 0.01
sio = io.TextIOWrapper(io.BufferedRWPair(ser, ser))
print "serial port opened"
return ser, sio
except Exception, message:
print "couldn't open serial"
raise SystemExit, message #The executable dumps here if this line is included
return None, None
这是我的setup.py,我主要从教程中复制:
#see http://screeniqsys.com/blog/2009/03/20/making-py2exe-play-nice-with-pygame/
from distutils.core import setup
import py2exe
import sys
import os
import glob, shutil
import pygame
sys.argv.append("py2exe")
VERSION = '1.0'
PRODUCT_NAME = 'Weight Mentor'
SCRIPT_MAIN = 'main.py'
VERSIONSTRING = PRODUCT_NAME + " ALPHA " + VERSION
REMOVE_BUILD_ON_EXIT = True
PYGAMEDIR = os.path.split(pygame.base.__file__)[0]
SDL_DLLS = glob.glob(os.path.join(PYGAMEDIR, '*.dll'))
if os.path.exists('dist/'): shutil.rmtree('dist/')
extra_files = [ ("graphics", glob.glob(os.path.join('graphics','*.png'))),
("fonts", glob.glob(os.path.join('fonts','*.ttf'))) ]
INCLUDE_STUFF = ['encodings',"encodings.latin_1",]
setup(windows=[
{'script': SCRIPT_MAIN}],
options = {"py2exe": {
"optimize": 2,
"includes": INCLUDE_STUFF,
"compressed": 1,
"ascii": 1,
"bundle_files": 3, #unfortunately on x64 we can't use the better bundle files options. So we bundle nothing :(
"ignores": ['tcl', 'AppKit', 'Numeric', 'Foundation']
} },
name = PRODUCT_NAME,
version = VERSION,
data_files = extra_files,
zipfile = None)
if REMOVE_BUILD_ON_EXIT:
shutil.rmtree('build/')
for f in SDL_DLLS:
fname = os.path.basename(f)
try:
shutil.copyfile(f, os.path.join('dist',fname))
except:
pass
通常,此设置脚本也有一些代码可以通过一些排除来修剪分发的权重,但我在测试时删除了这些代码,以消除作为错误来源的排除包。
所以我认为必须有一些东西(DLL?INCLUDE_STUFF 中的另一行?)我需要添加到setup.py以使其与 pySerial 一起正常工作。我只是不知道那是什么东西。py2exe 文档没有提到 pySerial 的特殊要求,我的谷歌搜索也没有发现任何东西。
任何帮助都感激不尽!