On Win XP SP3, source file test_numpy.py: import numpy >
> def main(): > print numpy.array([23, 34, 45, 56]) > return > > if __name__ == '__main__': > main() Generate executable with: > python pyinstaller.py --onefile test_numpy.py Execute from dist directory with: > test_numpy Output is: ImportError: No module named multiarray Any ideas? -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pyinstaller?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
