44
As you can read here this error is raised…
because
HTMLParseError
is deprecated from Python 3.3 onwards and removed in Python 3.5.
What you can do is downgrade your Python version or upgrade your Django version.
27
I’ve just got the same error here. The Django version installed on my machine was 1.7.
Upgrading to Django 1.8.* solved the problem for me.
- [Django]-What is choice_set in this Django app tutorial?
- [Django]-Django download a file
- [Django]-How to loop over form field choices and display associated model instance fields
11
You can upgrade your Django using following command:
If you are using pip3
:
sudo pip3 install django --upgrade
If pip
:
sudo pip install django --upgrade
- [Django]-Why use Django on Google App Engine?
- [Django]-Django REST Framework POST nested objects
- [Django]-Use variable as dictionary key in Django template
- [Django]-Django order_by() filter with distinct()
- [Django]-How to exempt CSRF Protection on direct_to_template
- [Django]-Django query annotation with boolean field
Source:stackexchange.com