dev-vb
dev-vb

Reputation: 775

entering dev_appserver.py on cmd line just opens the file. Does NOT run it

On windows cmd line I am entering the following: "dev_appserver.py" myapp

But, dev_appserver.py file just opens as a word doc.

Could you pls let me let me know why I am not able to run it?

Upvotes: 1

Views: 2630

Answers (2)

Ing. Armando Ibarra
Ing. Armando Ibarra

Reputation: 11

archlinux's terminal you should run the next command:

python2 /usr/bin/dev_appserver.py --clear_datastore yes app-id

Upvotes: 0

Dave W. Smith
Dave W. Smith

Reputation: 24966

You've manage to associate .py with Microsoft Word. This is a Windows thing, and not at all an App Engine thing.

To run dev_appserver.py, try

python dev_appserver.py

which assumes that you have python in your PATH.

Upvotes: 1

Related Questions