I'm following a build process within mingw-w64.
Contains several instructions to type a python file which is on $PATH.
How do I set up mingw-w64 to allow that? Currently I need to type python3 followed by the full path of the py file.
I'm following a build process within mingw-w64.
Contains several instructions to type a python file which is on $PATH.
How do I set up mingw-w64 to allow that? Currently I need to type python3 followed by the full path of the py file.
The shebang line (= first line starting with #!
) is not supported in Windows, so you have to call the python executable with the script as first argument (and any arguments after that).