我最近卸载了django-markdown,然后安装了django-markdown-app。该网站仍在当地运行良好。但在推送到Heroku之后,网站崩溃了
mixpanel.track("Page Change", {"state":$state.current.name})
我的File "/app/.heroku/python/lib/python2.7/site-packages/django/apps/config.py", line 90, in create
module = import_module(entry)
File "/app/.heroku/python/lib/python2.7/importlib/__init__.py", line 37, in import_module
__import__(name)
ImportError: No module named django_markdown
设置包含INSTALLED_APPS
,似乎会触发错误。
requirements.txt文件包含'django_markdown'
。
当我django-markdown-app==0.8.6
时,结果还包括heroku run pip freeze
。
编辑:在本地,在设置了一个新的virtualenv并运行django-markdown-app==0.8.6
后,该应用程序在新的virtualenv中正常运行。