On which IDE I should code so my python program .exe file will run on Windows | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 8

On which IDE I should code so my python program .exe file will run on Windows

I have just develop a simple software that take a input as how many pizza a user want to order and user can edit the design of the pizza. But the problem is its. Exe file doesn't run on Windows 7. Is any additional software required.

14th Jan 2019, 9:18 PM
AKS
AKS - avatar
2 Answers
+ 7
It generated automatically
15th Jan 2019, 8:10 PM
AKS
AKS - avatar
+ 4
EXE files should run on Win7, perhaps the problem is that you turn your python code into exe the wrong way. Maybe due to a bad converter, or because you renamed the file from .py to .exe. (More Information would help). You do not need a separate IDE to convert py to exe, you can use IDLE, Visual Studio, Notepad etc. It does not matter. All you have to do, is install a proper converter, I usually use pyinstaller. To install pyinstaller type in - pip install pyinstaller into the cmd, If it won't work, try python -m pip install pyinstaller - After the packages install, just type in cmd - pyinstaller (directory of the file) You will get a "dist" file in the same directory as your code, and it will contain the EXE file. If you encounter any problems, directly message me on sololearn.
15th Jan 2019, 6:14 PM
Danila Karpov
Danila Karpov - avatar