Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

The following modules appear to be missing - py2exe

1,008 views
Skip to first unread message

miamia

unread,
Jul 19, 2011, 5:48:22 AM7/19/11
to
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
['Carbon', 'Carbon.Files', '_scproxy', 'fixedpoint', 'gdk', 'mx',
'unix', 'glib.
GError', 'glib.IOChannel', 'glib.IO_ERR', 'glib.IO_FLAG_APPEND',
'glib.IO_FLAG_G
ET_MASK', 'glib.IO_FLAG_IS_READABLE', 'glib.IO_FLAG_IS_SEEKABLE',
'glib.IO_FLAG_
IS_WRITEABLE', 'glib.IO_FLAG_MASK', 'glib.IO_FLAG_NONBLOCK',
'glib.IO_FLAG_SET_M
ASK', 'glib.IO_HUP', 'glib.IO_IN', 'glib.IO_NVAL', 'glib.IO_OUT',
'glib.IO_PRI',
'glib.IO_STATUS_AGAIN', 'glib.IO_STATUS_EOF', 'glib.IO_STATUS_ERROR',
'glib.IO_
STATUS_NORMAL', 'glib.Idle', 'glib.MainContext', 'glib.MainLoop',
'glib.OPTION_E
RROR', 'glib.OPTION_ERROR_BAD_VALUE', 'glib.OPTION_ERROR_FAILED',
'glib.OPTION_E
RROR_UNKNOWN_OPTION', 'glib.OPTION_FLAG_FILENAME',
'glib.OPTION_FLAG_HIDDEN', 'g
lib.OPTION_FLAG_IN_MAIN', 'glib.OPTION_FLAG_NOALIAS',
'glib.OPTION_FLAG_NO_ARG',
'glib.OPTION_FLAG_OPTIONAL_ARG', 'glib.OPTION_FLAG_REVERSE',
'glib.OPTION_REMAI
NING', 'glib.OptionContext', 'glib.OptionGroup',
'glib.PRIORITY_DEFAULT', 'glib.
PRIORITY_DEFAULT_IDLE', 'glib.PRIORITY_HIGH',
'glib.PRIORITY_HIGH_IDLE', 'glib.P
RIORITY_LOW', 'glib.Pid', 'glib.PollFD',
'glib.SPAWN_CHILD_INHERITS_STDIN', 'gli
b.SPAWN_DO_NOT_REAP_CHILD', 'glib.SPAWN_FILE_AND_ARGV_ZERO',
'glib.SPAWN_LEAVE_D
ESCRIPTORS_OPEN', 'glib.SPAWN_SEARCH_PATH',
'glib.SPAWN_STDERR_TO_DEV_NULL', 'gl
ib.SPAWN_STDOUT_TO_DEV_NULL', 'glib.Source', 'glib.Timeout',
'glib.child_watch_a
dd', 'glib.filename_display_basename', 'glib.filename_display_name',
'glib.filen
ame_from_utf8', 'glib.get_application_name', 'glib.get_current_time',
'glib.get_
prgname', 'glib.glib_version', 'glib.idle_add', 'glib.io_add_watch',
'glib.main_
context_default', 'glib.main_depth', 'glib.markup_escape_text',
'glib.set_applic
ation_name', 'glib.set_prgname', 'glib.source_remove',
'glib.spawn_async', 'glib
.timeout_add', 'glib.timeout_add_seconds',
'glib.uri_list_extract_uris']

*** binary dependencies ***
Your executable(s) also depend on these dlls which are not included,
you may or may not need to distribute them.

Make sure you have the license if you distribute any of them, and
make sure you don't distribute files belonging to the operating
system.

USP10.DLL - C:\WINDOWS\system32\USP10.DLL
OLEAUT32.dll - C:\WINDOWS\system32\OLEAUT32.dll
USER32.dll - C:\WINDOWS\system32\USER32.dll
POWRPROF.dll - C:\WINDOWS\system32\POWRPROF.dll
SHELL32.dll - C:\WINDOWS\system32\SHELL32.dll
ole32.dll - C:\WINDOWS\system32\ole32.dll
SHLWAPI.DLL - C:\WINDOWS\system32\SHLWAPI.DLL
COMDLG32.DLL - C:\WINDOWS\system32\COMDLG32.DLL
ADVAPI32.DLL - C:\WINDOWS\system32\ADVAPI32.DLL
msvcrt.dll - C:\WINDOWS\system32\msvcrt.dll
WS2_32.dll - C:\WINDOWS\system32\WS2_32.dll
WINSPOOL.DRV - C:\WINDOWS\system32\WINSPOOL.DRV
GDI32.dll - C:\WINDOWS\system32\GDI32.dll
DNSAPI.DLL - C:\WINDOWS\system32\DNSAPI.DLL
VERSION.dll - C:\WINDOWS\system32\VERSION.dll
KERNEL32.dll - C:\WINDOWS\system32\KERNEL32.dll
IMM32.DLL - C:\WINDOWS\system32\IMM32.DLL
COMCTL32.DLL - C:\WINDOWS\system32\COMCTL32.DLL
MSIMG32.DLL - C:\WINDOWS\system32\MSIMG32.DLL
MPR.dll - C:\WINDOWS\system32\MPR.dll
gdiplus.dll - C:\WINDOWS\system32\gdiplus.dll

Noon Silk

unread,
Jul 19, 2011, 7:13:50 AM7/19/11
to Peter Irbizon, pytho...@python.org
On Tue, Jul 19, 2011 at 7:47 PM, Peter Irbizon <peteri...@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."

miamia

unread,
Jul 19, 2011, 8:32:26 AM7/19/11
to
On Jul 19, 1:13 pm, Noon Silk <noonsli...@gmail.com> wrote:

> On Tue, Jul 19, 2011 at 7:47 PM, Peter Irbizon <peterirbi...@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."

my setup.py looks like this:
# -*- coding: utf-8 -*-
from distutils.core import setup
import py2exe
import sys

class Target:
def __init__(self, **kw):
self.__dict__.update(kw)
self.version = "0.9.0.002"
target = Target(
script = "app.py",
icon_resources=[(1, 'ico.ico')],
)


setup(
name = 'xx',
author='abc',

windows = [target],

options = {
'py2exe': {
'packages':'encodings, kinterbasdb',
'includes': 'cairo, pango, pangocairo, atk,
gobject, gio',
}
},

data_files=[],
)


there must be something missing. I will try to find it out what is it.

Terry Reedy

unread,
Jul 19, 2011, 12:45:22 PM7/19/11
to pytho...@python.org
On 7/19/2011 5:47 AM, Peter Irbizon 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.

From the stuff below, you appear to be compiling for Windows.

> The following modules appear to be missing

> ['Carbon', 'Carbon.Files',

This is Mac gui stuff which you neither need nor want in a Windows
binary. I suspect mis-specification somewhere.

'_scproxy', 'fixedpoint', 'gdk', 'mx', 'unix', 'glib.

compiling with gcc? You appear to be missing its glib.


--
Terry Jan Reedy

miamia

unread,
Jul 20, 2011, 4:43:41 AM7/20/11
to
hello, thanks for your answer.

>  From the stuff below, you appear to be compiling for Windows.

yes

>
> > The following modules appear to be missing
> > ['Carbon', 'Carbon.Files',
> This is Mac gui stuff which you neither need nor want in a Windows
> binary. I suspect mis-specification somewhere.

ok so this is not necessary.

>
>   '_scproxy', 'fixedpoint', 'gdk', 'mx', 'unix', 'glib.
>
> compiling with gcc? You appear to be missing its glib.

I compile with py2exe and have no idea how to retrieve missing libs. I
tried to ask at
http://sourceforge.net/mailarchive/forum.php?thread_name=CABFuWSwv76-Hz-fNrqN_2__%2Bb7ZpPuBb%3DT%2B-i0-MF%2BJvjj8Fqg%40mail.gmail.com&forum_name=py2exe-users
as well and Dieter responded it is py2exe troubles with gdk and glib
packages.

0 new messages