Django runserver卡住执行系统检查

k5ifujac  于 2023-08-08  发布在  Go
关注(0)|答案(5)|浏览(190)

我正在运行python manage.py runserver或migrate,在这两个命令中,它都卡住了执行系统检查。你能帮助我了解这个问题是什么以及如何解决它吗?

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...

字符串

uklbhaso

uklbhaso1#

试试看
第一个月
在虚拟环境中。我通过升级我的Django版本解决了这个问题,而没有卸载我的MySQL 5.7服务器。

xjreopfe

xjreopfe2#

MySQL最新版本导致了这个问题...只是恢复MySQL版本到5.6,它工作:)

jdg4fx2g

jdg4fx2g3#

这可能是网络问题。我的代码以前运行得很好,但有一天我在一些文件中添加了client = BertClient(),我忘记启动bert服务器(bert是一个ML模型)。结果,我在启动Django应用程序时遇到了同样的问题。
您可以通过注解/取消注解imports来检查从应用程序的urls.py文件开始。

quhf5bfb

quhf5bfb4#

Mac 14.4.0上的MySQL 5.7.x也有同样的问题。
1.删除MySQL
2. brew install homebrew/versions/mysql 56(安装旧版本)

qncylg1j

qncylg1j5#

在我的情况下,可能的原因是我的docker的Postgres和Redis被关闭,但在它们运行后,服务器给了我连接错误,所以在重新启动服务器后,一切都很好

相关问题