반응형
1.8에서 django 1.9로 업그레이드 할 때이 오류가 발생했습니다. 비슷한 질문에 대한 답변을 확인했지만 타사 패키지 또는 앱의 문제라고 생각하지 않았습니다.
Traceback (most recent call last):
File "manage.py", line 10, in <module> execute_from_command_line(sys.argv)
File "/home/kishore/.virtualenvs/andone/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 350, in execute_from_command_line
utility.execute()
File "/home/kishore/.virtualenvs/andone/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 342, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/home/kishore/.virtualenvs/andone/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 176, in fetch_command
commands = get_commands()
File "/home/kishore/.virtualenvs/andone/local/lib/python2.7/site-packages/django/utils/lru_cache.py", line 100, in wrapper
result = user_function(*args, **kwds)
File "/home/kishore/.virtualenvs/andone/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 71, in get_commands
for app_config in reversed(list(apps.get_app_configs())):
File "/home/kishore/.virtualenvs/andone/local/lib/python2.7/site-packages/django/apps/registry.py", line 137, in get_app_configs
self.check_apps_ready()
File "/home/kishore/.virtualenvs/andone/local/lib/python2.7/site-packages/django/apps/registry.py", line 124, in check_apps_ready
raise AppRegistryNotReady("Apps aren't loaded yet.")
django.core.exceptions.AppRegistryNotReady: Apps aren't loaded yet.
'django.contrib.auth'에 대해 설치된 앱을 수정했습니다.
해결 방법
내 모델 __ init __. py
파일 중 하나에 작성된 사용자 지정 함수입니다. 오류가 발생했습니다. 이 함수를 __ init __. py
에서 옮겼을 때 작동했습니다.
참조 페이지 https://stackoverflow.com/questions/34114427
반응형
'파이썬' 카테고리의 다른 글
파이썬 How do I install Keras and Theano in Anaconda Python on Windows? (0) | 2020.11.12 |
---|---|
파이썬 How to round a number to significant figures in Python (0) | 2020.11.12 |
파이썬 중첩 된 튜플의 차원을 찾는 방법은 무엇입니까? (0) | 2020.11.12 |
파이썬 소켓 GET (0) | 2020.11.12 |
파이썬 Does Python have a string 'contains' substring method? (0) | 2020.11.12 |
댓글