2022-12-20から1日間の記事一覧

django.db.utils.ProgrammingError: relation "django_site" does not exist

error code : django.db.utils.ProgrammingError: relation "django_site" does not exist 解決: python3 manage.py migrate

error:NameError: name 'include' is not defined

エラーコード: (~略~) NameError: name 'include' is not defined 解決: URLディスパッチャへのインポート漏れ from django.urls import include #←追記 (略) 参考: django-allauthをdjango2.1に導入 - Qiita

Django/ docker-compose: パッケージ を"requirements.txt" で一括操作

Djangoでパッケージのインストール docker-compose Django requirements.txt内のパッケージを一括でインストールする requirements.txt Django==3.2 psycopg2>=2.8 # 追加 django-allauth Terminal docker-compose exec web pip install -r requirements.txt…