This seems to be fixed in r102 ( http://code.google.com/p/google-app-engine-django/source/detail?r=102)
Andi On Wed, Mar 17, 2010 at 6:03 AM, Robert <[email protected]> wrote: > I installed the helper r100, typed python manage.py runserver, and > received. > > /usr/local/google_appengine/google/appengine/api/ > datastore_file_stub.py:40: DeprecationWarning: the md5 module is > deprecated; use hashlib instead > import md5 > /usr/local/google_appengine/google/appengine/api/memcache/__init__.py: > 31: DeprecationWarning: the sha module is deprecated; use the hashlib > module instead > import sha > Traceback (most recent call last): > File "manage.py", line 21, in <module> > InstallAppengineHelperForDjango() > File "/local/src/djangocode/myproject/appengine_django/__init__.py", > line 544, in InstallAppengineHelperForDjango > InstallDjangoModuleReplacements() > File "/local/src/djangocode/myproject/appengine_django/__init__.py", > line 261, in InstallDjangoModuleReplacements > import django.db > File "/usr/local/lib/python2.6/dist-packages/django/db/__init__.py", > line 57, in <module> > 'TIME_ZONE': settings.TIME_ZONE, > File "/local/src/djangocode/myproject/appengine_django/db/base.py", > line 117, in __init__ > self._setup_stubs() > File "/local/src/djangocode/myproject/appengine_django/db/base.py", > line 128, in _setup_stubs > from google.appengine.tools import dev_appserver_main > File "/usr/local/google_appengine/google/appengine/tools/ > dev_appserver_main.py", line 82, in <module> > from google.appengine.tools import appcfg > File "/usr/local/google_appengine/google/appengine/tools/appcfg.py", > line 53, in <module> > from google.appengine.api import dosinfo > File "/usr/local/google_appengine/google/appengine/api/dosinfo.py", > line 25, in <module> > import ipaddr > ImportError: No module named ipaddr > > If I insert into manage.py: > import sys > sys.path.insert(0,'/usr/local/google_appengine/lib/ipaddr') > > Now it appears to work. Is this sufficient or is there a known gotcha? > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<google-appengine%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/google-appengine?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
