0
を使用してdjango-google-analyticsをインストールしました。この応答はRequirement already satisfied: django-google-analytics in ./env/lib/python2.7/site-packages
です。Django-google-analyticsインポートエラー
私は
は、私は何をする必要がありますImportError: No module named google_analytics
を取得し、私はINSTALLED_APPS
から'google_analytics',
を追加しましたし、私はenv/bin/python manage.py syncdb
を実行すると、私は
settings.py
でGOOGLE_ANALYTICS_MODEL = True
を追加しましたか?便利
cache cleared
cache settings imported
Traceback (most recent call last):
File "manage.py", line 10, in <module>
execute_from_command_line(sys.argv)
File "/home/henry/Documents/culture.folder/src/culturegymnkitchen/env/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 353, in execute_from_command_line
utility.execute()
File "/home/henry/Documents/culture.folder/src/culturegymnkitchen/env/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 327, in execute
django.setup()
File "/home/henry/Documents/culture.folder/src/culturegymnkitchen/env/local/lib/python2.7/site-packages/django/__init__.py", line 18, in setup
apps.populate(settings.INSTALLED_APPS)
File "/home/henry/Documents/culture.folder/src/culturegymnkitchen/env/local/lib/python2.7/site-packages/django/apps/registry.py", line 85, in populate
app_config = AppConfig.create(entry)
File "/home/henry/Documents/culture.folder/src/culturegymnkitchen/env/local/lib/python2.7/site-packages/django/apps/config.py", line 90, in create
module = import_module(entry)
File "/usr/lib/python2.7/importlib/__init__.py", line 37, in import_module
__import__(name)
ImportError: No module named google_analytics
あなたのDjangoバージョンは何ですか? –
Django == 1.7.10 – HenryM
としてrequirements.txtからインストールされましたが、それは答えでした - 私は何か他のバージョンが間違っていました。私はすべてを再インストールし、進歩したようです。 – HenryM