What version of Django are you running? On Fri, Jul 26, 2019, 7:34 AM abhijithez <[email protected]> wrote:
> Hi All, > > I have created a Django Project that is working fine on local desktop but > when I am starting the same on linux server using python manage.py > runserver it shows the following: > > $python manage.py runserver > > Watching for file changes with StatReloader > Performing system checks... > System check identified no issues (0 silenced). > Traceback (most recent call last): > File "manage.py", line 21, in <module> > main() > File "manage.py", line 17, in main > execute_from_command_line(sys.argv) > File > "/home/mluser/anaconda3/lib/python3.5/site-packages/django/core/managemen > > > t/__init__.py", line 381, in execute_from_command_line > utility.execute() > File > "/home/mluser/anaconda3/lib/python3.5/site-packages/django/core/managemen > > > t/__init__.py", line 375, in execute > self.fetch_command(subcommand).run_from_argv(self.argv) > File > "/home/mluser/anaconda3/lib/python3.5/site-packages/django/core/managemen > > > t/base.py", line 323, in run_from_argv > self.execute(*args, **cmd_options) > File > "/home/mluser/anaconda3/lib/python3.5/site-packages/django/core/managemen > > > t/commands/runserver.py", line 60, in execute > super().execute(*args, **options) > File > "/home/mluser/anaconda3/lib/python3.5/site-packages/django/core/managemen > > > t/base.py", line 364, in execute > output = self.handle(*args, **options) > File > "/home/mluser/anaconda3/lib/python3.5/site-packages/django/core/managemen > > > t/commands/runserver.py", line 95, in handle > self.run(**options) > File > "/home/mluser/anaconda3/lib/python3.5/site-packages/django/core/managemen > > > t/commands/runserver.py", line 102, in run > autoreload.run_with_reloader(self.inner_run, **options) > File > "/home/mluser/anaconda3/lib/python3.5/site-packages/django/utils/autorelo > > > ad.py", line 587, in run_with_reloader > start_django(reloader, main_func, *args, **kwargs) > File > "/home/mluser/anaconda3/lib/python3.5/site-packages/django/utils/autorelo > > > ad.py", line 572, in start_django > reloader.run(django_main_thread) > File > "/home/mluser/anaconda3/lib/python3.5/site-packages/django/utils/autorelo > > > ad.py", line 290, in run > self.run_loop() > File > "/home/mluser/anaconda3/lib/python3.5/site-packages/django/utils/autorelo > > > ad.py", line 296, in run_loop > next(ticker) > File > "/home/mluser/anaconda3/lib/python3.5/site-packages/django/utils/autorelo > > > ad.py", line 336, in tick > for filepath, mtime in self.snapshot_files(): > File > "/home/mluser/anaconda3/lib/python3.5/site-packages/django/utils/autorelo > > > ad.py", line 352, in snapshot_files > for file in self.watched_files(): > File > "/home/mluser/anaconda3/lib/python3.5/site-packages/django/utils/autorelo > > > ad.py", line 251, in watched_files > yield from iter_all_python_module_files() > File > "/home/mluser/anaconda3/lib/python3.5/site-packages/django/utils/autorelo > > > ad.py", line 103, in iter_all_python_module_files > return iter_modules_and_files(modules, frozenset(_error_files)) > File > "/home/mluser/anaconda3/lib/python3.5/site-packages/django/utils/autorelo > > > ad.py", line 116, in iter_modules_and_files > if module.__name__ == '__main__': > File "/home/mluser/anaconda3/lib/python3.5/site-packages/py/_apipkg.py", > line > > 171, in __getattribute__ > return getattr(getmod(), name) > File "/home/mluser/anaconda3/lib/python3.5/site-packages/py/_error.py", > line 4 > > 3, in __getattr__ > raise AttributeError(name) > AttributeError: __name__ > > What could be the issue? > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/b2e867f4-3d12-4a5e-b035-cabc7419e294%40googlegroups.com > <https://groups.google.com/d/msgid/django-users/b2e867f4-3d12-4a5e-b035-cabc7419e294%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CANfN%3DK97Xge0BRLvfXvaSUCzExXLNRqVJqSx3%3DsZPe3qYm7cAw%40mail.gmail.com.

