web-dev-qa-db-fra.com

AttributeError: le module 'html.parser' n'a pas d'attribut 'HTMLParseError'

  1. Ce sont les allusions, comment puis-je le résoudre?
  2. J'utilise Python 3.5.1 créé un environnement virtuel par virtualenv
  3. Le code source fonctionne bien sur l'ordinateur de mon ami

Erreur:

Traceback (most recent call last):
  File "manage.py", line 10, in <module>
    execute_from_command_line(sys.argv)
  File "A:\Python3.5\lib\site-packages\Django\core\management\__init__.py", line 385, in execute_from_command_line
    utility.execute()
  File "A:\Python3.5\lib\site-packages\Django\core\management\__init__.py", line 354, in execute
    Django.setup()
  File "A:\Python3.5\lib\site-packages\Django\__init__.py", line 18, in setup
    from Django.utils.log import configure_logging
  File "A:\Python3.5\lib\site-packages\Django\utils\log.py", line 13, in <module>
    from Django.views.debug import ExceptionReporter, get_exception_reporter_filter
  File "A:\Python3.5\lib\site-packages\Django\views\debug.py", line 10, in <module>
    from Django.http import (HttpResponse, HttpResponseServerError,
  File "A:\Python3.5\lib\site-packages\Django\http\__init__.py", line 4, in <module>
    from Django.http.response import (
  File "A:\Python3.5\lib\site-packages\Django\http\response.py", line 13, in <module>
    from Django.core.serializers.json import DjangoJSONEncoder
  File "A:\Python3.5\lib\site-packages\Django\core\serializers\__init__.py", line 23, in <module>
    from Django.core.serializers.base import SerializerDoesNotExist
  File "A:\Python3.5\lib\site-packages\Django\core\serializers\base.py", line 6, in <module>
    from Django.db import models
  File "A:\Python3.5\lib\site-packages\Django\db\models\__init__.py", line 6, in <module>
    from Django.db.models.query import Q, QuerySet, Prefetch  # NOQA
  File "A:\Python3.5\lib\site-packages\Django\db\models\query.py", line 13, in <module>
    from Django.db.models.fields import AutoField, Empty
  File "A:\Python3.5\lib\site-packages\Django\db\models\fields\__init__.py", line 18, in <module>
    from Django import forms
  File "A:\Python3.5\lib\site-packages\Django\forms\__init__.py", line 6, in <module>
    from Django.forms.fields import *  # NOQA
  File "A:\Python3.5\lib\site-packages\Django\forms\fields.py", line 18, in <module>
    from Django.forms.utils import from_current_timezone, to_current_timezone
  File "A:\Python3.5\lib\site-packages\Django\forms\utils.py", line 15, in <module>
    from Django.utils.html import format_html, format_html_join, escape
  File "A:\Python3.5\lib\site-packages\Django\utils\html.py", line 16, in <module>
    from .html_parser import HTMLParser, HTMLParseError
  File "A:\Python3.5\lib\site-packages\Django\utils\html_parser.py", line 12, in <module>
    HTMLParseError = _html_parser.HTMLParseError
AttributeError: module 'html.parser' has no attribute 'HTMLParseError'
42
HyperZhang

Comme vous pouvez le lire ici cette erreur est générée ...

parce que HTMLParseError est obsolète à partir de Python 3.3 et ultérieur et est supprimé dans Python 3.5.

Ce que vous pouvez faire, c'est déclasser votre version Python ou mettre à niveau votre version Django.

36
mazulo

Je viens d'avoir la même erreur ici. La version de Django installée sur ma machine était 1.7.

La mise à niveau vers Django 1.8. * A résolu le problème pour moi.

21
ppalacios

Vous pouvez mettre à niveau votre Django en utilisant la commande suivante:

Si vous utilisez pip3:

Sudo pip3 install Django --upgrade

Si pip:

Sudo pip install Django --upgrade
10
Kasrâmvd
pip install Django --upgrade
python manage.py runserver
0
elhay efrat