Reputation: 52
I built a program in Linux using Python and used Pyinstaller to create an executable. When I run the executable on Windows 10, it tells me that the software is not compatible with Windows 10 and won't run.
I tried the compatibility solver/wizard and the program still won't run on Windows 10.
Is there something I might have missed while using Pyinstaller? Or do I need to install some programs on windows 10 to make it work?
Upvotes: 0
Views: 1620
Reputation: 598
If you want your program to run on Windows you have to use PyInstaller on Windows to create the executable for Windows.
Upvotes: 2