I have developed a simple MIPS instruction set assembler that takes instruction from the user & output the machine code in text file using python 2.7. I want to make this program executable out of IDE; I mean I want to deliver this project to someone that doesn't have python installed on his computer. What should I do?
Asked
Active
Viewed 77 times
1 Answers
2
You can compile a python script into a .exe in windows using Pyinstaller. Read tutorial here. (http://www.pyinstaller.org/)

afkfurion
- 2,767
- 18
- 12