+ 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.
4 Respostas
+ 7
It generated automatically
+ 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.