Converting GUI-application into .exe-file with cx_Freeze: no plugin found for toolkit qt4
My program contains mayavi, traits and pyqt5 elements in order to visualize something in 3D. I tried to convert my GUI-Application with cx_Freeze and it created the exe-file ,but running it I got the error: no traitsui.toolkits plugin found for toolkit qt4 After some google and stackoverflow research I figured out that it might has something to do with my environment: see creating standalone exe using pyinstaller with mayavi import According to the suggestions in further google research I added these lines to the top of my code: import imp try: imp.find_module('pyside') # test if PySide if