On 5/27/11 1:08 PM, Rand Batchelder wrote: > I need to specify the missing modules in the spec file, but I am not sure how. >> From my understanding, PyInstaller analyzes the python script to determine > which modules need to be included in the exe. > > Any advice ?
Ah, I'd forgotten that part. In my main.py file for my application, I have this line: import wx.gizmos, wx.lib.calendar Doing that will make PyInstaller (and other such tools) explicitly find those dependencies. Paul _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[email protected]
