我在点击谷歌教程后遇到了一些问题:https://cloud.google.com/python/django/flexible-environment
一切正常,直到我跑到python manage.py migrate
,此时错误是:
django.core.exceptions.ImproperlyConfigured: If set, STATIC_URL must end with a slash
请注意,Google的文档明确说明:
Nonetheleess,我更改了settings.py以设置STATIC_URL = '/static/'
(这是默认开头),并收到错误:
django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module: No module named 'MySQLdb'
我无法解决任何一个错误。正在使用的SQL驱动程序是mysqlclient
,并使用了python 3。谢谢你的帮助。