Hi, PyInstaller looks like a very handy way to distribute Python software, so I'd like to use it. I have a question, though: does PyInstaller support NumPy?
The reason I ask is that NumPy is not listed at http://www.pyinstaller.org/wiki/SupportedPackages, but matplotlib is (which depends on NumPy, doesn't it?). I searched this mailing list, and I found hints that people are using NumPy with PyInstaller, but apparently no explicit discussion of it. Sorry if I've missed something obvious! >From reading PyInstaller's manual, I see there an issue with "hidden" imports (which I understand to mean that e.g. just having "import numpy" in my script does not allow PyInstaller to find various names that numpy actually exposes). I found that PyInstaller has hooks to support this kind of thing, but is it possible to tell PyInstaller to include all of numpy without trying to figure out which parts my script actually uses? I couldn't see anything about that in the manual. Thanks, Chris -- 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.
