【发布时间】:2017-10-12 08:03:40
【问题描述】:
当我将“频道”添加到 INSTALLED_APPS 时遇到此错误
Writing objects: 100% (4/4), 351 bytes | 0 bytes/s, done.
Total 4 (delta 3), reused 0 (delta 0)
remote: Compressing source files... done.
remote: Building source:
remote:
remote: -----> Python app detected
remote: -----> Installing requirements with latest Pipenv…
remote: Installing dependencies from Pipfile.lock (36121f)…
remote: -----> $ python manage.py collectstatic --noinput
remote: Traceback (most recent call last):
remote: File "manage.py", line 10, in <module>
remote: execute_from_command_line(sys.argv)
remote: File "/app/.heroku/python/lib/python3.6/site-packages/django/core/management/__init__.py", line 363, in execute_from_command_line
remote: utility.execute()
remote: File "/app/.heroku/python/lib/python3.6/site-packages/django/core/management/__init__.py", line 337, in execute
remote: django.setup()
remote: File "/app/.heroku/python/lib/python3.6/site- packages/django/__init__.py", line 27, in setup
remote: apps.populate(settings.INSTALLED_APPS)
remote: File "/app/.heroku/python/lib/python3.6/site-packages/django/apps/registry.py", line 85, in populate
remote: app_config = AppConfig.create(entry)
remote: File "/app/.heroku/python/lib/python3.6/site-packages/django/apps/config.py", line 94, in create
remote: module = import_module(entry)
remote: File "/app/.heroku/python/lib/python3.6/importlib/__init__.py", line 126, in import_module
remote: return _bootstrap._gcd_import(name[level:], package, level)
remote: File "<frozen importlib._bootstrap>", line 978, in _gcd_import
remote: File "<frozen importlib._bootstrap>", line 961, in _find_and_load
remote: File "<frozen importlib._bootstrap>", line 948, in _find_and_load_unlocked
remote: ModuleNotFoundError: No module named 'channels'
remote:
remote: ! Error while running '$ python manage.py collectstatic --noinput'.
remote: See traceback above for details.
remote:
remote: You may need to update application code to resolve this error.
remote: Or, you can disable collectstatic for this application:
remote:
remote: $ heroku config:set DISABLE_COLLECTSTATIC=1
remote:
remote: https://devcenter.heroku.com/articles/django-assets
remote: ! Push rejected, failed to compile Python app.
remote:
remote: ! Push failed
到目前为止我尝试了什么:
我禁用了 collectstatic,它能够将代码推送到 heroku 但服务器崩溃了
卸载频道并重新安装
谁能给我一些建议,谢谢。
【问题讨论】:
-
在你的 requirements.txt 中吗?显示该文件。
-
我在requirements.txt中找到了,如下列表 asgi-redis==1.4.3 asgiref==1.1.2 astroid==1.5.3 attrs==17.2.0 autobahn==17.9 .3 Automat==0.6.0 certifi==2017.7.27.1 channels==1.1.8 chardet==3.0.4 colorama==0.3.9 不断==15.1.0 daphne==1.3.0 decorator==4.1.2 dj-database-url==0.4.2 Django==1.11.6 flake8==3.4.1 超链接==17.3.1 idna==2.6 增量==17.5.0 ipython==6.2.1 ipython-genutils==0.2 .0 isort==4.2.15 jedi==0.11.0 lazy-object-proxy==1.3.1
-
抱歉格式不明确....请看下面!Valid XHTML。
-
@Kaspar 你把
channels添加到INSTALLED_APPS了吗?请出示您的settings.py。
标签: django heroku django-channels