makemigrations报错

来源:7-3 自定义userprofile表覆盖默认的user表

nnglong

2019-12-24

django.core.exceptions.ImproperlyConfigured: Requested setting STATIC_URL, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings.

写回答

2回答

Hi_Mike

2020-07-03

# django-admin makemigrations   使用这条命令 就会报错

正确姿势是:

# python manage.py makemigrations

# python manage.py migrate                                                                                                                                                               20-07-03 22:08

Operations to perform:

  Apply all migrations: admin, auth, contenttypes, sessions, users

Running migrations:

  Applying contenttypes.0001_initial... OK

  Applying contenttypes.0002_remove_content_type_name... OK

  Applying auth.0001_initial... OK

  Applying auth.0002_alter_permission_name_max_length... OK

  Applying auth.0003_alter_user_email_max_length... OK

  Applying auth.0004_alter_user_username_opts... OK

  Applying auth.0005_alter_user_last_login_null... OK

  Applying auth.0006_require_contenttypes_0002... OK

  Applying auth.0007_alter_validators_add_error_messages... OK

  Applying auth.0008_alter_user_username_max_length... OK

  Applying auth.0009_alter_user_last_name_max_length... OK

  Applying auth.0010_alter_group_name_max_length... OK

  Applying auth.0011_update_proxy_permissions... OK

  Applying users.0001_initial... OK

  Applying admin.0001_initial... OK

  Applying admin.0002_logentry_remove_auto_add... OK

  Applying admin.0003_logentry_add_action_flag_choices... OK

  Applying sessions.0001_initial... OK


0
0

bobby

2019-12-25

你是不是设置了自己的userprofile才出现这个问题?不设置不会出错?

0
4
nnglong
回复
bobby
换pycharm执行没问题,但是在vscode的终端中执行python manage.py makemigrations就报上面错。 虚拟环境是一样的,代码也没改动。 不清楚啥原因.....
2019-12-26
共4条回复

Django+ xadmin 开发在线教育网站

一套通用的技术组合拳,助你解决大部分Python类网站后端问题

1911 学习 · 2149 问题

查看课程