Executable made from pyinstaller is not compatible in windows 10

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

Answers (1)

lpozo
lpozo

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

Related Questions