The issue is basically that if I create a simple pyqtgraph program using PyQt on a windows platform the executable is not viable when done.
The initial issue was I was using multiprocessing in python and that had an interesting incompatibility with windows that requires one to add the `multiprocessing.freeze_support()` along with certain adjustments to how one handles creating the actual multi-processes that are different than outlined for how to use multiprocessing within the normal documentation for multiprocessing --- you would think they would implement this in the general guidelines as this slightly different implementation is compatible with all OS's not just Unix-ish ones Now I noticed that pyqtgraph appears to use and or support multiprocessing or at least pyinstaller things it does -- and I am wondering if this is true and if perhaps the implementation of multiprocessing within the pyqtgraph library was done in the Unix-ish compatible only method which is why it works but then breaks when compiled within a Windows OS Regardless I am striving to figure out how to adjust my code or get a compiler that will allow me to compile PyQt and pyqtgraph into a single executable within the Windows OS any help will be greatly appreciated -- You received this message because you are subscribed to the Google Groups "pyqtgraph" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/pyqtgraph/f5f7e2c4-ae9c-41fb-9270-fb74f350695do%40googlegroups.com.
