AttributeError: module 'html.parser' has no attribute 'HTMLParseError'

Solution 1:

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.

Solution 2:

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.