views:

44

answers:

1

I have created a google-app-engine Java project in Eclipse using Google's Eclipse plugin. I had tried to deploy my application using terminal as follows:

~$ appcfg.py update /home/crimson/Music/Testing5/InitialData/

But it shows the following error:

appcfg.py: command not found

How to solve this?

+3  A: 

If you developed a Java application using Google App Engine, you shouldn't use appcfg.py, that is meant for Python projects. See the documentation of Google App Engine for more details on how to deploy a Java-based project. In a nutshell, you will need appcfg.sh if you are on Linux or Mac OS X, or appcfg.cmd if you are on Windows.

Tamás