How Can I Make A Windows Executable With Pyserial?
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']) and I run i
Solution 1:
Had same issue. Upgrading pyserial to 2.5 solved the problem: exec built without additional "includes" contains pyserial.
Post a Comment for "How Can I Make A Windows Executable With Pyserial?"