Luis Miguel Morillas <[EMAIL PROTECTED]> wrote: > I opened a ticket a few days ago: > http://pyinstaller.hpcf.upr.edu/cgi-bin/trac.cgi/ticket/67 > > Any idea about how to solve this problem?
Luis, I do not have any direct experience with pkg_resources. I expect it to investigate directories in the sys.path, .pth files, and whatnot to find out if a module is installed: not really something that could work well with a frozen application. In fact, what is the reason for a frozen application to ever need pkg_resources? It does not make sense to investigate user's Python installation which might not even exist. I guess pkg_resources should be used on development machines only. Do you have any real-world usage case where you would need pkg_resources from inside a frozen application? Giovanni Bajo _______________________________________________ PyInstaller mailing list [email protected] http://lists.hpcf.upr.edu/mailman/listinfo/pyinstaller
