ImportError: нет модуля с именем 'html.parser'; 'html' не является пакетом (python3)
код:
from html.parser import HTMLParser
Traceback (последний звонок):
File "program.py", line 7, in <module>
from html.parser import HTMLParser
ImportError: No module named 'html.parser'; 'html' is not a package
Я называю это python3 program.py
версия Python: Python 3.4.0
2 ответов
создана местные файл с именем html.py
это маскирует стандартный пакет библиотеки.
переименовать его или удалить его; вы можете найти его с:
python3 -c "import html; print(html.__file__)"
демо:
naga:stackoverflow-3.4 mpieters$ touch html.py
naga:stackoverflow-3.4 mpieters$ bin/python -c 'from html.parser import HTMLParser'
Traceback (most recent call last):
File "<frozen importlib._bootstrap>", line 2218, in _find_and_load_unlocked
AttributeError: 'module' object has no attribute '__path__'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named 'html.parser'; 'html' is not a package
naga:stackoverflow-3.4 mpieters$ bin/python -c "import html; print(html.__file__)"
/.../stackoverflow-3.4/html.py
naga:stackoverflow-3.4 mpieters$ rm html.py
naga:stackoverflow-3.4 mpieters$ bin/python -c 'from html.parser import HTMLParser; print("Succeeded")'
Succeeded
у вас есть файл html.py
(или html.pyc
) где-то в путь Python:
$ touch html.py
$ python3 -c 'import html.parser'
Traceback (most recent call last):
File "<frozen importlib._bootstrap>", line 2218, in _find_and_load_unlocked
AttributeError: 'module' object has no attribute '__path__'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named 'html.parser'; 'html' is not a package
просто переименуйте файл (к myhtml.py
). Если вы не уверены, где он находится, Вы можете распечатать его местоположение с
# Insert temporarily before the problematic line
import html
print(html.__file__)