y code is working in local. But the same code when I am uploading into https://www.pythonanywhere.com. Its throwing error.
Note: I have updated few things to make it compatible for django2,which is working for me in my local windows box. https://www.pythonanywhere.com/user/crackjeeonline/webapps/#tab_id_crackjeeonline_pythonanywhere_com https://github.com/atulanandnitt/simplesocial result of pip freeze 1. (djangoVenv) 07:50 ~/simplesocial (master)$ pip freeze 2. -f /usr/share/pip-wheels 3. argon2-cffi==18.3.0 4. bcrypt==3.1.5 5. certifi==2018.10.15 6. cffi==1.11.5 7. chardet==3.0.4 8. coreapi==2.3.3 9. coreschema==0.0.4 10. Django==2.0.9 11. django-bootstrap3==11.0.0 12. django-braces==1.13.0 13. django-cors-headers==2.4.0 14. django-debug-toolbar==1.10.1 15. django-filter==2.0.0 16. django-tables2==2.0.3 17. djangorestframework==3.9.0 18. Faker==1.0.1 19. idna==2.7 20. itypes==1.1.0 21. Jinja2==2.10 22. Markdown==3.0.1 23. MarkupSafe==1.1.0 24. misaka==2.1.1 25. Pillow==5.3.0 26. pycparser==2.19 27. python-dateutil==2.7.5 28. pytz==2018.7 29. requests==2.20.1 30. six==1.12.0 31. sqlparse==0.2.4 32. text-unidecode==1.2 33. uritemplate==3.0.0 Snippet from https://www.pythonanywhere.com/user/crackjeeonline/files/var/log/crackjeeonline.pythonanywhere.com.error.log 1. 2018-12-23 06:53:44,347: Error running WSGI application 2. 2018-12-23 06:53:44,355: ModuleNotFoundError: No module named 'debug_toolbar' 3. 2018-12-23 06:53:44,356: File "/var/www/crackjeeonline_pythonanywhere_com_wsgi.py", line 54, in <module> 4. 2018-12-23 06:53:44,356: django.setup() 5. 2018-12-23 06:53:44,356: 6. 2018-12-23 06:53:44,356: File "/usr/lib/python3.6/site-packages/django/__init__.py", line 24, in setup 7. 2018-12-23 06:53:44,357: apps.populate(settings.INSTALLED_APPS) 8. 2018-12-23 06:53:44,357: 9. 2018-12-23 06:53:44,357: File "/usr/lib/python3.6/site-packages/django/apps/registry.py", line 89, in populate 10. 2018-12-23 06:53:44,357: app_config = AppConfig.create(entry) 11. 2018-12-23 06:53:44,358: 12. 2018-12-23 06:53:44,358: File "/usr/lib/python3.6/site-packages/django/apps/config.py", line 90, in create 13. 2018-12-23 06:53:44,358: module = import_module(entry) 14. 2018-12-23 06:53:44,358: *************************************************** 15. 2018-12-23 06:53:44,359: If you're seeing an import error and don't know why, 16. 2018-12-23 06:53:44,359: we have a dedicated help page to help you debug: 17. 2018-12-23 06:53:44,359: https://help.pythonanywhere.com/pages/DebuggingImportError/ Regards, Atul -- 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 post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAKHpVdTdwqMXje4KzTOSX1QF9FNR89oOQAB%2BkDncKQ7ZP93pyg%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.

