Django MySQLdb 版本与 _mysql 版本 Ubuntu 不匹配

2021-12-26 00:00:00 django mysql-python ubuntu deployment mysql

我正在尝试从存储库部署一个 django 站点.我快到了,然后改变了一些东西(我不确定是什么!!)然后又回到了原点.

I'm trying to get a django site deployed from a repository. I was almost there, and then changed something (I'm not sure what!!) and was back to square one.

现在我正在尝试运行 ./manage.py syncdb 并收到以下错误:

Now I'm trying to run ./manage.py syncdb and get the following error:

django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module: this is MySQLdb version (1, 2, 3, 'final', 0), but _mysql is version (1, 2, 2, 'final', 0))

django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module: this is MySQLdb version (1, 2, 3, 'final', 0), but _mysql is version (1, 2, 2, 'final', 0)

我在论坛上搜索了几个小时,但提供的解决方案都没有帮助.我尝试卸载并重新安装 MySQL-python 并升级它.尝试从 python 命令行解释器导入时出现同样的错误.

I've searched forums for hours and none of the solutions presented helped. I tried uninstalling and re-installing MySQL-python and upgrading it. I get the same error when trying to import it from the python command line interpreter.

大家有什么建议吗?

推荐答案

对于那些遇到这个问题的人:

For those who come upon this question:

事实证明,ubuntu _mysql 版本与我的 venv 中的版本不同.卸载它并在我的 venv 中重新安装就成功了.

It turns out that ubuntu _mysql version was different from the one in my venv. Uninstalling that and re-installing in my venv did the trick.

相关文章