Hi, I tried setting up the project and set up the virtual environment and activated it as well. However when I try to run migrations I get the following errors.
Traceback (most recent call last):
File "manage.py", line 13, in <module>
execute_from_command_line(sys.argv)
File "/home/salman-bhai/All-Projects/ns-3-AppStore/appstore/lib/python3.6/site-packages/django/core/management/__init__.py", line 371, in execute_from_command_line
utility.execute()
File "/home/salman-bhai/All-Projects/ns-3-AppStore/appstore/lib/python3.6/site-packages/django/core/management/__init__.py", line 317, in execute
settings.INSTALLED_APPS
File "/home/salman-bhai/All-Projects/ns-3-AppStore/appstore/lib/python3.6/site-packages/django/conf/__init__.py", line 56, in __getattr__
self._setup(name)
File "/home/salman-bhai/All-Projects/ns-3-AppStore/appstore/lib/python3.6/site-packages/django/conf/__init__.py", line 43, in _setup
self._wrapped = Settings(settings_module)
File "/home/salman-bhai/All-Projects/ns-3-AppStore/appstore/lib/python3.6/site-packages/django/conf/__init__.py", line 106, in __init__
mod = importlib.import_module(self.SETTINGS_MODULE)
File "/home/salman-bhai/Documents/anaconda36/lib/python3.6/importlib/__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 994, in _gcd_import
File "<frozen importlib._bootstrap>", line 971, in _find_and_load
File "<frozen importlib._bootstrap>", line 955, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 665, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 678, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/home/salman-bhai/All-Projects/ns-3-AppStore/src/appstore/settings/development.py", line 1, in <module>
from .base import * # NOQA
File "/home/salman-bhai/All-Projects/ns-3-AppStore/src/appstore/settings/base.py", line 10, in <module>
from django.core.urlresolvers import reverse_lazy
ModuleNotFoundError: No module named 'django.core.urlresolvers'
I did try to Google this up and came upon this link
Tried changing the appstore/settings/base.py file from
from django.core.urlresolvers import reverse_lazy
to
from django.urls import reverse_lazy
but got the following error.
Traceback (most recent call last):
File "manage.py", line 13, in <module>
execute_from_command_line(sys.argv)
File "/home/salman-bhai/All-Projects/ns-3-AppStore/appstore/lib/python3.6/site-packages/django/core/management/__init__.py", line 371, in execute_from_command_line
utility.execute()
File "/home/salman-bhai/All-Projects/ns-3-AppStore/appstore/lib/python3.6/site-packages/django/core/management/__init__.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/home/salman-bhai/All-Projects/ns-3-AppStore/appstore/lib/python3.6/site-packages/django/core/management/__init__.py", line 216, in fetch_command
klass = load_command_class(app_name, subcommand)
File "/home/salman-bhai/All-Projects/ns-3-AppStore/appstore/lib/python3.6/site-packages/django/core/management/__init__.py", line 36, in load_command_class
module = import_module('%s.management.commands.%s' % (app_name, name))
File "/home/salman-bhai/Documents/anaconda36/lib/python3.6/importlib/__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 994, in _gcd_import
File "<frozen importlib._bootstrap>", line 971, in _find_and_load
File "<frozen importlib._bootstrap>", line 955, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 665, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 678, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/home/salman-bhai/All-Projects/ns-3-AppStore/appstore/lib/python3.6/site-packages/django/core/management/commands/migrate.py", line 12, in <module>
from django.db.migrations.autodetector import MigrationAutodetector
File "/home/salman-bhai/All-Projects/ns-3-AppStore/appstore/lib/python3.6/site-packages/django/db/migrations/autodetector.py", line 11, in <module>
from django.db.migrations.questioner import MigrationQuestioner
File "/home/salman-bhai/All-Projects/ns-3-AppStore/appstore/lib/python3.6/site-packages/django/db/migrations/questioner.py", line 9, in <module>
from .loader import MigrationLoader
File "/home/salman-bhai/All-Projects/ns-3-AppStore/appstore/lib/python3.6/site-packages/django/db/migrations/loader.py", line 8, in <module>
from django.db.migrations.recorder import MigrationRecorder
File "/home/salman-bhai/All-Projects/ns-3-AppStore/appstore/lib/python3.6/site-packages/django/db/migrations/recorder.py", line 9, in <module>
class MigrationRecorder:
File "/home/salman-bhai/All-Projects/ns-3-AppStore/appstore/lib/python3.6/site-packages/django/db/migrations/recorder.py", line 22, in MigrationRecorder
class Migration(models.Model):
File "/home/salman-bhai/All-Projects/ns-3-AppStore/appstore/lib/python3.6/site-packages/django/db/models/base.py",line 100, in __new__
app_config = apps.get_containing_app_config(module)
File "/home/salman-bhai/All-Projects/ns-3-AppStore/appstore/lib/python3.6/site-packages/django/apps/registry.py", line 244, in get_containing_app_config
self.check_apps_ready()
File "/home/salman-bhai/All-Projects/ns-3-AppStore/appstore/lib/python3.6/site-packages/django/apps/registry.py", line 127, in check_apps_ready
raise AppRegistryNotReady("Apps aren't loaded yet.")
django.core.exceptions.AppRegistryNotReady: Apps aren't loaded yet.
Let me know how we can solve this error!
Hi, I tried setting up the project and set up the virtual environment and activated it as well. However when I try to run migrations I get the following errors.
I did try to Google this up and came upon this link
Tried changing the appstore/settings/base.py file from
to
but got the following error.
Let me know how we can solve this error!