每当我尝试将我的 django 应用程序推送到 Heroku 时,我的日志文件中都会出现以下错误,请协助我应该如何解决它,

Posted

技术标签:

【中文标题】每当我尝试将我的 django 应用程序推送到 Heroku 时,我的日志文件中都会出现以下错误,请协助我应该如何解决它,【英文标题】:I keep getting The below errors on my log file whenever i try to Push my django app to Heroku, Kindly assist on how i should go about in solving it, 【发布时间】:2017-01-08 04:33:36 【问题描述】:

这是我的日志文件

 $ python manage.py collectstatic --noinput
   Traceback (most recent call last):
     File "manage.py", line 9, in <module>
       execute_from_command_line(sys.argv)
     File "/app/.heroku/python/lib/python2.7/site-packages/django/core/management/__init__.py", line 353, in execute_from_command_line
       utility.execute()
     File "/app/.heroku/python/lib/python2.7/site-packages/django/core/management/__init__.py", line 327, in execute
       django.setup()
     File "/app/.heroku/python/lib/python2.7/site-packages/django/__init__.py", line 18, in setup
       apps.populate(settings.INSTALLED_APPS)
     File "/app/.heroku/python/lib/python2.7/site-packages/django/apps/registry.py", line 115, in populate
       app_config.ready()
     File "/app/.heroku/python/lib/python2.7/site-packages/django/contrib/admin/apps.py", line 22, in ready
       self.module.autodiscover()
     File "/app/.heroku/python/lib/python2.7/site-packages/django/contrib/admin/__init__.py", line 26, in autodiscover
       autodiscover_modules('admin', register_to=site)
     File "/app/.heroku/python/lib/python2.7/site-packages/django/utils/module_loading.py", line 50, in autodiscover_modules
       import_module('%s.%s' % (app_config.name, module_to_search))
     File "/app/.heroku/python/lib/python2.7/importlib/__init__.py", line 37, in import_module
       __import__(name)
     File "/app/.heroku/python/lib/python2.7/site-packages/registration/admin.py", line 2, in <module>
       from django.contrib.sites.models import RequestSite
   ImportError: cannot import name RequestSite
 !     Error while running '$ python manage.py collectstatic --noinput'.
       See traceback above for details.
       You may need to update application code to resolve this error.
       Or, you can disable collectstatic for this application:
          $ heroku config:set DISABLE_COLLECTSTATIC=1
       https://devcenter.heroku.com/articles/django-assets
 !     Push rejected, failed to compile Python app.
 !     Push failed

【问题讨论】:

ImportError: cannot import name RequestSite 似乎很清楚...... 你在更换模型后应用makemigrationmigrate命令了吗? @MarcB,该导入适用于我的注册模型,它在我的开发服务器中完美运行,当我尝试将其推送到 heroku 时它只是抛出该错误,你建议我如何去做? @UsmanMaqbool 是的,我做到了,我再次应用了迁移,它仍然会抛出该错误.. 【参考方案1】:

RequestSite 在 Django 1.7 中从 django.contrib.sites.models 移至 django.contrib.sites.requests,并且在 Django 1.9 中删除了 models 中的别名。您应该确保您运行的 django-registration 版本与您正在使用的 Django 版本兼容。

【讨论】:

以上是关于每当我尝试将我的 django 应用程序推送到 Heroku 时,我的日志文件中都会出现以下错误,请协助我应该如何解决它,的主要内容,如果未能解决你的问题,请参考以下文章

TableView 在 Swift 中推送到详细视图

为啥当我尝试将我的 Spring Boot 应用程序推送到 heroku 时它返回“致命错误编译:无效目标版本:11”

如何将我的节点应用程序成功推送到Heroku?

为啥我无法将我的代码推送到 BitBucket?

将存储库推送到 Github 时权限被拒绝 [重复]

每当我尝试通过 git 推送到远程仓库时都会发生错误。我已经尝试过使用我的 github 和 gitlab 帐户