On 24/09/2012 6:33 PM, Lynn Oliver wrote: > I don't know whether this is related to pyinstaller or not, but I > wanted to see if anyone else has run into this. > > My program uses numpy/scipy/matplotlib, and one of the features is to > open a window displaying some plotted lines. It works fine for most > people, but two or three have reported crashing when trying to use the > plot function, and one of those reported getting a "This Application > has requested the runtime to terminate in an unusual way..." error. > All of the reported problems have occurred on Windows 7. > > My first thought is that there is some exception that I'm not > handling, but I don't understand why that would happen on just a few > systems. > > Does anyone have any ideas what might be happening? > > Lynn > -- > 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. The most likely difference is that those systems may have a different version of one of the "common" dlls - if there is a different version and it is being loaded in preference to those that the stable systems are using then this sort of problem can occur - try running something like process explorer on the stable system(s) and list the dlls being used before and after opening the plot window then check that they are exactly the same on the other system(s).
Gadget/Steve -- 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.
