What version of Python did you install?
You must write your own batch file to execute your python binary and script.
For example, if you installed Python 2.7 by default on Windows, it could be the entire contents of your script.
myscript.bat :
ECHO ON REM A batch script to execute a Python script SET PATH=%PATH%;C:\Python27 python yourscript.py PAUSE
Save this file as "myscript.bat" (make sure it is not "myscript.bat.txt"), then double-click it.
source share