Question

I want to run a python script before building my application,
i  added the script path to the external tools following:

project properties  > Builders > New > program > file.py location

and when i click on Ok after adding the path i get the following error.

Create Process error=193, %1 is not a valid Win32 application

what is this error and how to run the script before building the project. please suggest

Was it helpful?

Solution

created a bat file with the path of the python file and also added project path to the working directory path. Now its building as expected.

OTHER TIPS

Call python "$(SolutionDir)\your_script.py"

You have to add python.exe to your PATH environment variable.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top