2👍
Please recheck “bootstrap3” in your INSTALLED_APPS and restart django. New template tags will be added only after restart.
0👍
In my case the problem was filesystem permissions.
I’m running as a normal user on CentOS 7, but Apache runs in daemon mode as user:apache group:apache. After doing a pip install bootstrap3
, I forgot to do a sudo chown -R :apache /srv/python
, where /srv/python/.../site-packages
is on the python-path configured in WSGIDaemonProcess. Making the newly-loaded site-package readable by group :apache and restarting httpd fixed the problem.
👤Dave
- [Answered ]-Remove extra GROUP BY in SQL query in Django ORM
- [Answered ]-How to fix ImportError: No module named urls
- [Answered ]-Get gmail email using django allAuth
- [Answered ]-Swagger boolean parameter value True/False instead of true/false and django_filters
Source:stackexchange.com