0

I have downloaded google_appengine_1.7.3.zip and followed the guidelines given and made the necessary changes to .bashrc as given here. Here are my main.py and app.yaml which lie in a folder named udacity.

On entering the following in my terminal,

python google_appengine/dev_appserver.py --use_sqlite --port=1234 genprojects/udacity/

I get the following message I am using Ubuntu 11.10. Please help!

pyronic
  • 372
  • 6
  • 16
  • 2
    Some quick [googling](https://www.google.com/search?q=No+address+associated+with+hostname) points to this being a problem with DNS. – Nathan Dec 02 '12 at 21:28

1 Answers1

2

There was no ip that corresponed to localhost in my file /etc/hosts. So it failed to get the IP from domain name - localhost Add the following line to the file /etc/hosts

127.0.0.2   localhost

reference

pyronic
  • 372
  • 6
  • 16