在Django 2中设置MySQL数据库连接后,尝试使用manage.py时出现以下错误。
Traceback (most recent call last):
File "/Users/sheldon/.local/share/virtualenvs/django-server-xw4tZkRJ/lib/python3.7/site-packages/django/db/backends/mysql/base.py", line 15, in <module>
import MySQLdb as Database
File "/Users/sheldon/.local/share/virtualenvs/django-server-xw4tZkRJ/lib/python3.7/site-packages/MySQLdb/__init__.py", line 18, in <module>
import _mysql
ImportError: dlopen(/Users/sheldon/.local/share/virtualenvs/django-server-xw4tZkRJ/lib/python3.7/site-packages/_mysql.cpython-37m-darwin.so, 2): Library not loaded: /usr/local/opt/mysql/lib/libmysqlclient.21.dylib
Referenced from: /Users/sheldon/.local/share/virtualenvs/django-server-xw4tZkRJ/lib/python3.7/site-packages/_mysql.cpython-37m-darwin.so
Reason: image not found
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "manage.py", line 15, in <module>
execute_from_command_line(sys.argv)
File "/Users/sheldon/.local/share/virtualenvs/django-server-xw4tZkRJ/lib/python3.7/site-packages/django/core/management/__init__.py", line 381, in execute_from_command_line
utility.execute()
File "/Users/sheldon/.local/share/virtualenvs/django-server-xw4tZkRJ/lib/python3.7/site-packages/django/core/management/__init__.py", line 357, in execute
django.setup()
File "/Users/sheldon/.local/share/virtualenvs/django-server-xw4tZkRJ/lib/python3.7/site-packages/django/__init__.py", line 24, in setup
apps.populate(settings.INSTALLED_APPS)
File "/Users/sheldon/.local/share/virtualenvs/django-server-xw4tZkRJ/lib/python3.7/site-packages/django/apps/registry.py", line 112, in populate
app_config.import_models()
File "/Users/sheldon/.local/share/virtualenvs/django-server-xw4tZkRJ/lib/python3.7/site-packages/django/apps/config.py", line 198, in import_models
self.models_module = import_module(models_module_name)
File "/Users/sheldon/.local/share/virtualenvs/django-server-xw4tZkRJ/lib/python3.7/importlib/__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1006, in _gcd_import
File "<frozen importlib._bootstrap>", line 983, in _find_and_load
File "<frozen importlib._bootstrap>", line 967, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 677, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 728, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/Users/sheldon/.local/share/virtualenvs/django-server-xw4tZkRJ/lib/python3.7/site-packages/django/contrib/auth/models.py", line 2, in <module>
from django.contrib.auth.base_user import AbstractBaseUser, BaseUserManager
File "/Users/sheldon/.local/share/virtualenvs/django-server-xw4tZkRJ/lib/python3.7/site-packages/django/contrib/auth/base_user.py", line 47, in <module>
class AbstractBaseUser(models.Model):
File "/Users/sheldon/.local/share/virtualenvs/django-server-xw4tZkRJ/lib/python3.7/site-packages/django/db/models/base.py", line 101, in __new__
new_class.add_to_class('_meta', Options(meta, app_label))
File "/Users/sheldon/.local/share/virtualenvs/django-server-xw4tZkRJ/lib/python3.7/site-packages/django/db/models/base.py", line 304, in add_to_class
value.contribute_to_class(cls, name)
File "/Users/sheldon/.local/share/virtualenvs/django-server-xw4tZkRJ/lib/python3.7/site-packages/django/db/models/options.py", line 203, in contribute_to_class
self.db_table = truncate_name(self.db_table, connection.ops.max_name_length())
File "/Users/sheldon/.local/share/virtualenvs/django-server-xw4tZkRJ/lib/python3.7/site-packages/django/db/__init__.py", line 33, in __getattr__
return getattr(connections[DEFAULT_DB_ALIAS], item)
File "/Users/sheldon/.local/share/virtualenvs/django-server-xw4tZkRJ/lib/python3.7/site-packages/django/db/utils.py", line 202, in __getitem__
backend = load_backend(db['ENGINE'])
File "/Users/sheldon/.local/share/virtualenvs/django-server-xw4tZkRJ/lib/python3.7/site-packages/django/db/utils.py", line 110, in load_backend
return import_module('%s.base' % backend_name)
File "/Users/sheldon/.local/share/virtualenvs/django-server-xw4tZkRJ/lib/python3.7/importlib/__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "/Users/sheldon/.local/share/virtualenvs/django-server-xw4tZkRJ/lib/python3.7/site-packages/django/db/backends/mysql/base.py", line 20, in <module>
) from err
django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module.
Did you install mysqlclient?
我正在macOS 10.13.5上工作,并且已经在pipenv上安装了mysqlclient
(在pipenv环境中运行manage.py)。我还按照建议安装了mysql-connector-c
和brew。
使用Sequel Pro,我可以毫无问题地连接到我的MAMP MySQL服务器。我也尝试过使用具有相同结果的docker MySQL服务器。我在settings.php中模仿了这些设置:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'default',
'USER': 'root',
'PASSWORD': 'root',
'HOST': '127.0.0.1',
'PORT': '8889',
},
}
我认为我缺少一些简单的东西。任何帮助将不胜感激。