Hello, I'm using the very latest version of pyInstaller (cloned yesterday from git) to create the package of a wxPython application.
This application uses sqlalchemy and sqlalchemy-migrate (http://code.google.com/p/sqlalchemy-migrate/) and this one is using pkg_resources. At first I was not using sqlalchemy-migrate as an egg file and I had error: "No module named 'pkg_resources'" when I tried to execute the program (the build ran fine). I read in the FAQ the following about pkg_resources: "The only situation in which it works is when it's being used on .egg files " so I tried to install sqlalchemy-migrate as an egg file. After rerun of the build (which ran fine) when I try to execute the application I got the error: ImportError: No module named migrate.versioning.api so it seems it is no more using sqlalchemy-migrate BUT in the 'eggs' folder of the build the egg file is correctly copied. I tried to add --hidden-import of 'migrate.versioning.api' but I got the warning "migrate.versioning.api has been found otherwise' during the build process. I didn't touch the generated spec file. I am using the snapshot version of pyInstaller, Windows XP, and python 2.7.5, Am I missing something ? Many thanks for any help, Emanuele Gesuato -- 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. For more options, visit https://groups.google.com/groups/opt_out.
