Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been trying to run a GAE Go project I developed on my Mac on my Windows machine with GoClipse after installing and configuring the appropriate SDKs and so forth. When attempting to run the project, I get this error:

Exception occurred executing command line. Cannot run program "C:\GoogleAppEngine\dev_appserver.py" (in directory "D:\Golang\workspace\Project\src\pkg"): CreateProcess error=193, %1 is not a valid Win32 application

How can I fix that error in order to run my project?

share|improve this question

2 Answers

While the below configuration works on the Mac as it has Python installed by default, Windows requires a different configuration.

On Mac the GoClipse External Tools Configuration would be:

Location: /GoogleAppEngine/dev_appserver.py
Working Directory: ${workspace_loc:/Project/src/pkg}
Arguments: .

The Windows configuration should look like:

Location: C:\Python27\Python.exe
Working Directory:
Arguments: C:\GoogleAppEngine\dev_appserver.py ${workspace_loc:/Project/src/pkg}
share|improve this answer
So u found the answer, awesome! – vishal.biyani Jul 3 '12 at 22:46

Trying to run .py (Which IMO is a Python file?) wont work directly on windows. You will need to install Python and then pass the above filename to Python something like (I don't know Python so don't go by exact syntax, you might need to look around)

python "C:\GoogleAppEngine\dev_appserver.py

The reason it's working on Mac is because Python comes pre-installed on mac as cited here But on windows it doesn't. So you can install Python and add the Python's bin folder to path, and then run above script and it should run fine!

share|improve this answer
As I'm using GoClipse and trying to do this through External Tools Configuration, trying to type in python C:\GoogleAppEngine\dev_appserver.py or any permutation of this an error message of "External tools location does not exist" – ThePiachu Jul 3 '12 at 21:25
Do you have Python on your Win machine? – vishal.biyani Jul 3 '12 at 21:36
Yes, I installed Python 2.7.3, I can run the .py files from the cmd without a problem. – ThePiachu Jul 3 '12 at 22:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.