I am using anaconda 3 and when I turn python scripts to .exe using pyinstaller they failed to open and I got an error message that said,
Application can't start because could not find or load Qt platform plugin "windows" in " "
I looked on stack overflow and found a solution for it here, and it solved my problem. However, now when I download other programs from the internet and try to open them they display the same error,
Application can't start because could not find or load Qt platform plugin "windows" in " "
I have delete the QT_PLUGIN_PATH from the environment variables in order to make the program that I installed work, but when I do that my .exe fails to open and I have to add the QT_PLUGIN_PATH again to make the .exe work.
Is there a way to make both my .exe and installed programs work without having to add and delete the QT_PLUGIN_PATH from the environment variables every time?
In environment variables I have,
QT_PLUGIN_PATH="C:\Users\username\AppData\Local\Continuum\anaconda3\Library\plugins"