I have a small Django project I received from a friend. The code works perfectly on his system. However, on my system I get the following error message when running the serv
All of the advice listed here didn't help me. So in my specific case the problem was that the templatetag had to be loaded from a third-party app, and I manually copied source folder with that app into src
folder in my virtualenv. Then I ran python setup.py install
inside that folder. After that django could not load this module.
Then I removed the source and installed folder of this app and installed it using pip install -r requirements.txt
after adding a relevant line into requirements.txt
file. It was downloaded into the src
folder, installed and everything began working properly. Hope this helps someone.