に失敗私はGAE(Google App Engineの)上でセットアップジャンゴ-nonrelにしようとしています - 手順に従って、ここでhttp://www.allbuttonspressed.com/projects/djangoappengine#installationジャンゴ・nonrelインポートキャッシュは
テストアプリケーションは素晴らしい作品 -
私は使用することができましたアプリケーションではなく、そのテストやシェルのためのキャッシュAPI:
シェルでfrom django.core.cache import cache
しようと
は私を与える:
>>> from django.core.cache import cache
Traceback (most recent call last):
File "<console>", line 1, in <module>
File "django-testapp/django/core/cache/__init__.py", line 182, in <module>
cache = get_cache(DEFAULT_CACHE_ALIAS)
File "django-testapp/django/core/cache/__init__.py", line 180, in get_cache
return backend_cls(location, params)
File "django-testapp/django/core/cache/backends/memcached.py", line 154, in __init__
import memcache
ImportError: No module named memcache
同様に./manage.py test
を試みるのと同じ方法で失敗します。
./manage runserver
は問題なく動作しますが、./manage shell
または./manage test
はキャッシュをインポートできません。
私はこの問題をOSX上でrunserverしようとしていましたが、それは私のために働いていました。ありがとう! – Brendan