
November 19th, 2003, 05:38 AM
|
|
Junior Member
|
|
Join Date: Nov 2003
Location: Hilversum / Netherlands
Posts: 1
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
py2exe: Carbon.Folder (etc) modules not found
Py2exe didnot work and produced the following warnings:
The following modules were not found:
Carbon.Folder
Carbon.Folders
fcntl
After that py2exe decided to quit.
I am using Python23 and Windows2000. I thought the Carbon modules are used for Macs, so I don't get why I should use them.
I was trying to build VideoCapture.py from Markus Gritsch. I use the following setup:
# setup.py
from distutils.core import setup
import py2exe
setup(name="Camelot",
scripts=["VideoCapture.pyw"],
data_files=[(".",
["Camelot.ico"])],
)
and run it with python setup.py py2exe --icon Camelot.ico
Can you help me with this?
Thanks, Jo
|