My OS is Windows 10 (64bit OS). I use Python 3.4 (32bit version) and created a GUI using pyqt. I created a onefile .exe using this command:
python pyinstaller.py mygui1.py --onefile --noconsole
The produced executable is working fine on my system. However, when I execute the file on my 64bit Windows 7 PC (where I don't have python installed at all) I only see a grey surface. How can I make sure to include all dependencies so it will execute on any Windows 7/10 PC?