I am actually having a similar issue where I am building an python app on a Mac (current dev version of pyinstaller) that depends on pygraphviz and graphviz. Same issue as above with pygraphviz not finding the dot method. This occurs when I build with the option:
python pyinstaller.py [path] -w But works just fine (runs graphviz) with: python pyinstaller.py [path] -onefile The main difference is that the first produces a Mac .app executable and the second produces a Unix Executable file. The reason I want to go with the first is that you can exclude the console window and have a custom .icns file (replace the default used in the pyinstaller/bootloader/images folder) which will show your program icon versus the feather icon. I know these issues are largely cosmetic but they definitely impact the user's ability to use the program. Thanks a lot! Nathan -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To view this discussion on the web visit https://groups.google.com/d/msg/pyinstaller/-/5DWUqX8zvXcJ. 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.
