Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Django No module named path.to

Tags:

django

using django-allauth when trying to load the url /social/connections/ I get the following error.

Error during template rendering

In template /Users/user/Documents/workspace/iFetch/templates/socialaccount/snippets/login_extra.html, error at line 3
No module named path.to
1   {% load socialaccount %}
2   
3   {% providers_media_js %}
4   
5   

what does this mean, how can I fix or what I have missed?

Thanks

like image 792
jason Avatar asked Sep 14 '25 08:09

jason


1 Answers

path.to.something is a shorthand in documentation for "replace this with whatever your actual path is to the module". You've probably copied something verbatim, without replacing it with your actual path.

like image 94
Daniel Roseman Avatar answered Sep 16 '25 23:09

Daniel Roseman