Keep cutting! Cut until the problem doesn't exhibit any more. Then back up one step. Then if there is anything else left to cut that is unrelated, cut that too.
I did just do: python $my_pyinstaller_dir/pyinstaller.py boot.py On a linux installation and on a windows installation, and it worked just fine. I would be willing to bet that your problems are caused by your entries in pathex, in the .spec file. Why are those there? Take them out and see if things work; there's no reason that you should have those in there, as far as I know. On Fri, Apr 12, 2013 at 7:32 PM, dbv <[email protected]> wrote: > Uploaded smaller sample example ( > http://docs.scipy.org/doc/scipy/reference/sparse.html) using numpy/scipy. > > This smaller sample example uses the numpy.random module but the result is > the same as the previous sample example which didn't use any random module > or function. As before, this sample example: > > a. works with the Python interpreter >> b. works when calling just the .pyd (generated with cython) >> c. doesn't work with pyinstaller > > > It appears that the Python//Lib//tempfile.py is called, which imports > random but instead of loading the Python//Lib/random module it loads the > numpy.random module (which doesn't have a Random). So, somewhere along the > line, pyinstaller is not re-setting sys.path. > > Anyway, you will probably have a much better explanation and solution and > look forward to it. > > -- > 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. > > > -- Daniel Hyams [email protected] -- 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.
