前提・実現したいこと
djangoでログインフォームを開発中です。
発生している問題・エラーメッセージ
admin.pyでDBを表示できるようにしたところ、こういったエラーが発生しました。
ImportError: attempted relative import with no known parent package
該当のソースコード
python
1from django.contrib import admin 2 3from .models import User_deta 4 5admin.site.register(User_deta)
試したこと
from .models を変更し、
from models にしたところ、
'''
django.core.exceptions.ImproperlyConfigured: Requested setting INSTALLED_APPS, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings.
'''
from アプリ名.models にしたところ、
'''
ModuleNotFoundError: No module named 'アプリ名'
'''
といったエラーが出てしまっています。
補足情報(FW/ツールのバージョンなど)
OS:Linux
エディター:VSCode
pythonバージョン:3.7.3
djangoバージョン:3.2.7
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/11/14 13:03
2021/11/14 13:44 編集
2021/11/15 08:28
2021/11/15 08:43
2021/11/15 14:17
2021/11/15 15:38
2021/11/16 14:18