When I run the following hellow world program (with the GAE Launcher) it works:
import webapp2
class MainPage(webapp2.RequestHandler):
def get(self):
It's not a bug. Appengine SDK includes webapp2 since version 1.6.
By default, you can not import webapp2 from the terminal because google_appengine is not added to PATH by default.
Add the following dirs to Python's PATH; C:\Program Files\Google\google_appengine\ and C:\Program Files\Google\google_appengine\lib\ and you will have the same enviroment the SDK provides.