Okay, so about 6 months ago a guy built a program for my company using python. The program ran fine, but now all of a sudden, it doesn’t work. The error message says it can’t find python/python.exe. I’m just trying to figure out if this is a file that came with the python installation, or if this is something that was built by the programmer. Sorry if this is a dumb question.
Share
Python.exe is a compiler-cum-interpreter file that comes with Python Implementation Package. It runs the code written using the python language. You can’t run python code until this is installed on your system. I suggest you go and download Python implementation from HERE for your OS and then try running the program you were doing earlier.