python - 无法在 Windows 7 64 位上使用 django 1.8.2 安装 MySQL 5.5

标签 python mysql django windows-7-x64

我在 Win7 64 位上安装了 MySQL 5.5 作为 XAMPP 堆栈的一部分。我正在使用 python 3.4,我想试用 Django。所以我从命令行使用 pip 安装了 Django,它在默认的 sqlite3 db 上运行良好。

为了集成 MySQL,我看到使用 pip 安装了“mysql-connector-python”。我将引擎更改为“mysql.connector.django”。我使用数据库设置更改了 settings.py 文件,如下所示:

DATABASES = {
    'default': { 
        'ENGINE': 'mysql.connector.django', 
        'NAME': 'db',                     
        'USER': 'root',
        'PASSWORD': '',
    }
}

当我检查服务器时,出现以下错误:

Traceback (most recent call last):
  File "c:\Python34\lib\site-packages\django\db\utils.py", line 111, in load_backend
    return import_module('%s.base' % backend_name)
  File "c:\Python34\lib\importlib\__init__.py", line 109, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 2254, in _gcd_import
  File "<frozen importlib._bootstrap>", line 2237, in _find_and_load
  File "<frozen importlib._bootstrap>", line 2226, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 1200, in _load_unlocked
  File "<frozen importlib._bootstrap>", line 1129, in _exec
  File "<frozen importlib._bootstrap>", line 1471, in exec_module
  File "<frozen importlib._bootstrap>", line 321, in _call_with_frames_removed
  File "c:\Python34\lib\site-packages\mysql\connector\django\base.py", line 50, in <module>
    from django.db.backends import (BaseDatabaseFeatures, BaseDatabaseOperations,
ImportError: cannot import name 'BaseDatabaseFeatures'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "manage.py", line 10, in <module>
    execute_from_command_line(sys.argv)
  File "c:\Python34\lib\site-packages\django\core\management\__init__.py", line 338, in execute_from_command_line
    utility.execute()
  File "c:\Python34\lib\site-packages\django\core\management\__init__.py", line 312, in execute
    django.setup()
  File "c:\Python34\lib\site-packages\django\__init__.py", line 18, in setup
    apps.populate(settings.INSTALLED_APPS)
  File "c:\Python34\lib\site-packages\django\apps\registry.py", line 108, in populate
    app_config.import_models(all_models)
  File "c:\Python34\lib\site-packages\django\apps\config.py", line 198, in import_models
    self.models_module = import_module(models_module_name)
  File "c:\Python34\lib\importlib\__init__.py", line 109, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 2254, in _gcd_import
  File "<frozen importlib._bootstrap>", line 2237, in _find_and_load
  File "<frozen importlib._bootstrap>", line 2226, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 1200, in _load_unlocked
  File "<frozen importlib._bootstrap>", line 1129, in _exec
  File "<frozen importlib._bootstrap>", line 1471, in exec_module
  File "<frozen importlib._bootstrap>", line 321, in _call_with_frames_removed
  File "c:\Python34\lib\site-packages\django\contrib\auth\models.py", line 41, in <module>
    class Permission(models.Model):
  File "c:\Python34\lib\site-packages\django\db\models\base.py", line 139, in __new__
    new_class.add_to_class('_meta', Options(meta, **kwargs))
  File "c:\Python34\lib\site-packages\django\db\models\base.py", line 324, in add_to_class
    value.contribute_to_class(cls, name)
  File "c:\Python34\lib\site-packages\django\db\models\options.py", line 250, in contribute_to_class
    self.db_table = truncate_name(self.db_table, connection.ops.max_name_length())
  File "c:\Python34\lib\site-packages\django\db\__init__.py", line 36, in __getattr__
    return getattr(connections[DEFAULT_DB_ALIAS], item)
  File "c:\Python34\lib\site-packages\django\db\utils.py", line 240, in __getitem__
    backend = load_backend(db['ENGINE'])
  File "c:\Python34\lib\site-packages\django\db\utils.py", line 129, in load_backend
    raise ImproperlyConfigured(error_msg)
django.core.exceptions.ImproperlyConfigured: 'mysql.connector.django' isn't an available database backend.
Try using 'django.db.backends.XXX', where XXX is one of:
    'base', 'mysql', 'oracle', 'postgresql_psycopg2', 'sqlite3'
Error was: cannot import name 'BaseDatabaseFeatures'

在这里发现了一个错误 - https://bugs.mysql.com/bug.php?id=76752

为了解决问题,它建议-

Adjust the backend to the changes in Django API. See the release notes for details:
https://docs.djangoproject.com/en/1.8/releases/1.8/#database-backend-api

如何调整后端?我不知道如何进行。

最佳答案

从 fork 版本安装。

pip install git+https://github.com/multiplay/mysql-connector-python

来自 Github repo描述这个是

Fork of version 2.0.4 of mysql-connector-python (and probably rebased at points) until upstream issues are fixed

bug url 获得引用.

关于python - 无法在 Windows 7 64 位上使用 django 1.8.2 安装 MySQL 5.5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30426512/

相关文章:

python - Django 的迁移列表在哪里 (migrate -l)

python - 逐步时间序列 Pandas

c# - SqlCommand AddWithValue 和 if 语句与 gridview 相关

python - 如何在两个不同的模型中插入数据?

python - 使用angularjs和django rest框架自动生成表单

python - 在Python中写入CSV

python - 单击条目小部件时如何启动计时器

MySQL ODBC 与 Microsoft Excel 2007 崩溃

MySQL 将系统函数调用解释为架构函数调用(错误代码 1305 : Function does not exist)

mysql - 无法通过django连接mysql