TypeError: unsupported operand type(s) for /: 'str' and 'str' django setting.py

TypeError: unsupported operand type(s) for /: 'str' and 'str' django setting.py

我在学习 Django 课程时遇到了这个错误,我不知道如何解决这是我的 settings.py

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': BASE_DIR / 'db.sqlite3',
    }
}

你必须像这样删除 / 和 +

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': BASE_DIR + 'db.sqlite3',
    }
}

如果您使用字符串

,您正在学习的教程使用了 pathlib.Path object for BASE_DIR which supports the / operator for joining paths. You need to either use pathlib or use os.path.join
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
    }
}