I'm getting the error at the end of the trace back below. When I run 'python manage.py makemigrations'. I Get similar errors when I run it by 'python manage.py makemigrations accounts' and 'python manage.py makemigrations homedb'. If I run the accounts app, it says I'm missing a dependency in the accounts app and if I run the homedb app, it says I'm missing a dependency in the accounts app.
In an effort to fix this, I've deleted my migrations, many pycache_ items, and the database to no avail.
I also unstalled then reinstalled django.
I would be greatful for any help. This is a portion of my traceback:
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/home/PyKane/.virtualenvs/django23/lib/python3.9/site-packages/d
jango/core/management/base.py", line 373, in run_from_argv
self.execute(*args, **cmd_options)
File "/home/PyKane/.virtualenvs/django23/lib/python3.9/site-packages/d
jango/core/management/base.py", line 417, in execute
output = self.handle(*args, **options)
File "/home/PyKane/.virtualenvs/django23/lib/python3.9/site-packages/d
jango/core/management/base.py", line 90, in wrapped
res = handle_func(*args, **kwargs)
File "/home/PyKane/.virtualenvs/django23/lib/python3.9/site-packages/d
jango/core/management/commands/makemigrations.py", line 88, in handle
loader = MigrationLoader(None, ignore_no_migrations=True)
File "/home/PyKane/.virtualenvs/django23/lib/python3.9/site-packages/d
jango/db/migrations/loader.py", line 53, in __init__
self.build_graph()
File "/home/PyKane/.virtualenvs/django23/lib/python3.9/site-packages/d
jango/db/migrations/loader.py", line 262, in build_graph
self.graph.validate_consistency()
File "/home/PyKane/.virtualenvs/django23/lib/python3.9/site-packages/d
jango/db/migrations/graph.py", line 195, in validate_consistency
[n.raise_error() for n in self.node_map.values() if isinstance(n, Du
mmyNode)]
File "/home/PyKane/.virtualenvs/django23/lib/python3.9/site-packages/d
jango/db/migrations/graph.py", line 195, in <listcomp>
[n.raise_error() for n in self.node_map.values() if isinstance(n, Du
mmyNode)]
File "/home/PyKane/.virtualenvs/django23/lib/python3.9/site-packages/d
jango/db/migrations/graph.py", line 58, in raise_error
raise NodeNotFoundError(self.error_message, self.key, origin=self.or
igin)
django.db.migrations.exceptions.NodeNotFoundError: Migration admin.0004_
alter_logentry_user dependencies reference nonexistent parent node ('hom
edb', '0005_account')