issue in hosting https://www.pythonanywhere.com

169 views
Skip to first unread message

Atul Anand

unread,
Dec 24, 2018, 9:04:38 AM12/24/18
to django...@googlegroups.com
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

Joel Mathew

unread,
Dec 24, 2018, 9:15:25 AM12/24/18
to django...@googlegroups.com
Use virtualenv
Sincerely yours,

 Joel G Mathew



--
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 django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
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.

Atul Anand

unread,
Dec 24, 2018, 11:09:17 AM12/24/18
to django...@googlegroups.com
I am using virtual env:  djangoVenv


Brad Pitcher

unread,
Dec 25, 2018, 12:36:06 AM12/25/18
to django...@googlegroups.com
The paths in your logs indicate you aren't using a virtualenv. Find the virtualenv section in the web tab and make sure you specify the path to your virtualenv there. Should be something like /home/[username]/.virtualenvs/djangoVenv

Atul Anand

unread,
Dec 25, 2018, 1:57:56 AM12/25/18
to django...@googlegroups.com
Hi Brad,

Thanks for helping, but I am using a venv.
please find the below snapshot of the venv detail.

Please guide me if I am doing something wrong.

Virtualenv:

Use a virtualenv to get different versions of flask, django etc from our default system ones. More info here. You need to Reload your web app to activate it; NB - will do nothing if the virtualenv does not exist.






Joel Mathew

unread,
Dec 25, 2018, 2:39:05 AM12/25/18
to django...@googlegroups.com
Did you activate it?

Sincerely yours,

 Joel G Mathew


Atul Anand

unread,
Dec 25, 2018, 3:01:32 AM12/25/18
to django...@googlegroups.com
Hi
I have activated the venv by below cmd:
07:57 ~/simplesocial (master)$ workon djangoVenv
Please let me know do I need to do something else ? Note: I have tried doing the same with cmd:  07:57 ~/simplesocial (master)$ activate. But it throwing error " bash: /home/crackjeeonline/.virtualenvs/djangoVenv/bin/activate: Permission denied"  


Regard,
Atul

Brad Pitcher

unread,
Dec 25, 2018, 10:59:28 AM12/25/18
to django...@googlegroups.com
Can you share your wsgi file created on pythonanywhere?

  1. 2018-12-23 06:53:<span class="gmail-m_1812526861761484677gmail-m_8407944227710800090gmail-m_585267503832193742gmail-m_3

Brad Pitcher

unread,
Dec 25, 2018, 1:02:12 PM12/25/18
to django...@googlegroups.com
Atul,
Have you looked over the troubleshooting in https://help.pythonanywhere.com/pages/DebuggingImportError ? It looks like your web app is using a separate django installed to the system python based on the paths in the error log. You should be able to fix that in the *_wsgi.py file.

Gear Crew

unread,
Dec 25, 2018, 1:28:03 PM12/25/18
to Django users
Did you edit WSGI.py in pythonanywhere?

ireoluwa fakeye

unread,
Dec 25, 2018, 1:39:25 PM12/25/18
to django...@googlegroups.com
Hii atul ,
The problem you are facing is because   you haven't added python anywhere to your allowed  host in your settings.py  .normally ,the only allowed host by default is your localhost. In order to solve this problem create a variable to hold the string 'www.pythonanywhere.com/yourappname' and pass it into the allowed host list .



Have a beautiful Christmas 
Ireoluwa 

  1. 2018-12-23 06:53:44,<span class="gmail-m_-4451880344268379364m_1718357571103290519gmail-m_1812526861761484677gmail-m_8407944227710800090gmail-m_585267503832193742gmail-m_362699691022052

Atul Anand

unread,
Dec 26, 2018, 2:48:32 AM12/26/18
to django...@googlegroups.com
Hi Ireoluwa,


Have a beautiful Christmas 
Nice observation, I made the below change:
ALLOWED_HOSTS = ['localhost', 'www.pythonanywhere.com/simplesocial']

But its still throwing the same error :(

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 django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
Reply all
Reply to author
Forward
0 new messages