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.

On Tue, Dec 25, 2018 at 7:58 AM Brad Pitcher <[email protected]> wrote:

> Can you share your wsgi file created on pythonanywhere?
>
> On Tue, Dec 25, 2018, 1:01 AM Atul Anand <[email protected] wrote:
>
>> 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
>>
>> On Tue, Dec 25, 2018 at 1:08 PM Joel Mathew <[email protected]> wrote:
>>
>>> Did you activate it?
>>> Sincerely yours,
>>>
>>>  Joel G Mathew
>>>
>>>
>>>
>>> On Tue, 25 Dec 2018 at 12:27, Atul Anand <[email protected]>
>>> wrote:
>>>
>>>> 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
>>>> <https://help.pythonanywhere.com/pages/Virtualenvs>. You need to *Reload
>>>> your web app* to activate it; NB - will do nothing if the virtualenv
>>>> does not exist.
>>>>
>>>> /home/crackjeeonline/.virtualenvs/djangoVenv
>>>> <https://www.pythonanywhere.com/user/crackjeeonline/webapps/#>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> On Tue, Dec 25, 2018 at 11:05 AM Brad Pitcher <[email protected]>
>>>> wrote:
>>>>
>>>>> 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
>>>>>
>>>>> On Mon, Dec 24, 2018 at 8:09 AM Atul Anand <[email protected]>
>>>>> wrote:
>>>>>
>>>>>> I am using virtual env: * djangoVenv*
>>>>>>
>>>>>>
>>>>>> On Mon, Dec 24, 2018 at 7:45 PM Joel Mathew <[email protected]> wrote:
>>>>>>
>>>>>>> Use virtualenv
>>>>>>> Sincerely yours,
>>>>>>>
>>>>>>>  Joel G Mathew
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> On Mon, 24 Dec 2018 at 19:34, Atul Anand <[email protected]>
>>>>>>> wrote:
>>>>>>>
>>>>>>>> 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:<span 
>>>>>>>> class="gmail-m_1812526861761484677gmail-m_8407944227710800090gmail-m_585267503832193742gmail-m_3
>>>>>>>>
>>>>>>>>

-- 
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/CAMFpZrhjuX_7bKEzBjRZSG5PzQGSQAiCX9TnKm4M38Eh-Hzg-g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to