Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用 Django 建立一个 MySQL 数据库。
python manage.py 运行服务器。
工作,然后我开始在 summertime.settings.py [summertime 是站点名称] 中编辑我的数据库
这是我的用户:
用户:TestUser 密码:密码主机:127.0.0.1
所有特权
我的 MAMP 设置为端口:3306
这是我的 settings.py
当我运行 $ python manage.py syncdb 时,我收到以下错误:
谢谢
您将需要安装 MySQLdb 驱动程序
pip install mysql-python