The following modules appear to be missing - py2exe

Noon Silk noonslists at gmail.com
Tue Jul 19 07:13:50 EDT 2011


On Tue, Jul 19, 2011 at 7:47 PM, Peter Irbizon <peterirbizon at gmail.com> wrote:
> Hello, please I have problem with "The following modules appear to be
> missing" message during compiling my app exe file with py2exe. What should I
> do with this? Many thanks in advance.
>
> The following modules appear to be missing
>
> [...]


What does your setup.py look like? I was able to solve this my
including the relevant libs in the following:

setup(windows=[{'script': 'foo.py'}],
    options={
        'py2exe':
        {
            'includes': ['gzip', 'other libs here'],
        }
    }
)

Given from here: <http://stackoverflow.com/questions/5308760/py2exe-lxml-woes>


-- 
Noon Silk | http://dnoondt.wordpress.com/ >

Fancy a quantum lunch? http://groups.google.com/group/quantum-lunch?hl=en

"Every morning when I wake up, I experience an exquisite joy — the joy
of being this signature."



More information about the Python-list mailing list