本文介绍了Django Runserver停留在执行系统检查的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在运行python manage.py runserver或迁移,并且在这两个命令中都卡在执行系统检查中。...能否请我帮忙了解问题所在以及如何解决?
I am running python manage.py runserver or migrate and in both commands it is getting stuck on Performing system checks... Can you please help me out to understand what is the issue and how to solve it?
Admins-MacBook-Pro:driveu_backend gathole$ python manage.py runserver
/Users/gathole/.virtualenvs/du/lib/python2.7/site-packages/social_auth/models.py:4: RemovedInDjango19Warning: django.utils.importlib will be removed in Django 1.9.
from django.utils.importlib import import_module
/Users/gathole/.virtualenvs/du/lib/python2.7/site-packages/social_auth/utils.py:14: RemovedInDjango19Warning: The utilities in django.db.models.loading are deprecated in favor of the new application loading system.
from django.db.models.loading import get_model
/Users/gathole/.virtualenvs/du/lib/python2.7/site-packages/social_auth/models.py:4: RemovedInDjango19Warning: django.utils.importlib will be removed in Django 1.9.
from django.utils.importlib import import_module
/Users/gathole/.virtualenvs/du/lib/python2.7/site-packages/social_auth/utils.py:14: RemovedInDjango19Warning: The utilities in django.db.models.loading are deprecated in favor of the new application loading system.
from django.db.models.loading import get_model
Performing system checks...
推荐答案
在Mac 14.4.0上的MySQL 5.7.x也有同样的问题。
MySQL 5.7.x on Mac 14.4.0 have the same issue.
1.remove mysql
1.remove the mysql
2.brew安装homebrew / versions / mysql56(安装旧版本)
2.brew install homebrew/versions/mysql56 (install an older version)
这篇关于Django Runserver停留在执行系统检查的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!