On Tue, 19 Oct 2010 16:07:27 +0200, Martin Zibricky <[email protected]> wrote: > wx python files aren't placed directly in > > /usr/lib/python2.6/site-packages > > but on my system in > > /usr/lib/python2.6/site-packages/wx-2.8-gtk2-unicode/ > > The PYTHONPATH to wx modules is specified in > > /usr/lib/python2.6/site-packages/wx.pth > > Pyinstaller seems to not handle these files and thus module > wx.lib.pubsub is not packaged by pinstaller.
If PyInstaller wasn't handling pth files correctly, no package installed with setuptools would work at all... PyInstaller does handle .pth tools because it inherits the system's site.py configuration. In fact, it just looks at sys.path, which is populated by python itself at startup in various ways (including pth files). -- Giovanni Bajo :: [email protected] Develer S.r.l. :: http://www.develer.com My Blog: http://giovanni.bajo.it -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pyinstaller?hl=en.
