Trying to learn cx-freeze. I have a python program that I am trying freeze to exe.

I use PySerial and no matter how I try to include win32 nothing seems to help. I use Python 3.2 and win7.

I have searched the web thin, and others have had the same problem, but no solution seems to be appearing. But I doubt that no one have succeeded in cx_freezing something that uses PySerial.

I am completely stuck. Any help would be much appreciated

Error:

Traceback (most recent call last):
  File "C:\Python32\lib\site-packages\
7, in <module>
    exec(code, m.__dict__)
  File "snapper.py", line 8, in
  File "C:\Python32\lib\site-packages\
    from serial.serialwin32 import *
  File "C:\Python32\lib\site-packages\
e>
    from serial import win32
ImportError: cannot import name win32

Setup.py:

from cx_Freeze import setup,Executable

includefiles = ['caml.pkl', 'seql.pkl']
includes = ['DataBase', 'serial.win32']
excludes = ['Tkinter']
packages = []

setup(
    name = 'Setup',
    version = '0.1',
    description = 'Snapper configuration utility',
    author = 'LST',
    author_email = 'info@-.com',
    options = {'build_exe': {'excludes':excludes,'packages':packages,'include_files':includefiles}}, 
    executables = [Executable('snapper.py')]
)

Any idea where to go from here? Thanks in advance

I tried to do a blind import:

if False:
   import serial.win32

no luck...

Maybe i am looking at this the wrong way....

link|improve this question
what if you change the include to serial? – Velociraptors Jan 3 at 21:57
No, tried that.. – Esben Jan 3 at 22:12
feedback

2 Answers

Okay, problem solved. I'm a newbie... admitted.

You need to use packages to force CX_Freeze to include serial.win32 (not "include")

Following line works:

packages = ['serial.win32'] 

Memo to my self and others: Be sure to check the dist folder for actually included packages. I have no idea why all packages didn't get included by CX_freeze in the first place, but this works for me.

link|improve this answer
feedback

If you can use a different tool to freeze your program, PyInstaller says it supports PySerial.

link|improve this answer
PyInstaller looks really nice. But does not support python 3.x as far as I can see – Esben Jan 3 at 22:37
Ah, sorry, I'm not sure how I failed to notice the python3 tag. – Velociraptors Jan 3 at 22:40
No problem. I am new to Python and I fail to see how I just didn't start with 2.7 :-) might go down that road soon though... – Esben Jan 3 at 22:48
1  
Okay, problem solved. I'm a newbie... admitted. You need to use packages to force CX_Freeze to include serial.win32 (not "includes") Following line works: packages = ['serial.win32'] Thanks – Esben Jan 3 at 23:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.