Como instalar o BeautifulSoup no Python2.7.12 no Ubuntu 16.04?

0

Eu instalei o beautifulsoup usando pip install beautifulsoup4 Mas quando eu digito from bs4 import BeautifulSoup está mostrando esse erro:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python2.7/dist-packages/bs4/__init__.py", line 30, in <module>
    from .builder import builder_registry, ParserRejectedMarkup
  File "/usr/lib/python2.7/dist-packages/bs4/builder/__init__.py", line 314, in <module>
    from . import _html5lib
  File "/usr/lib/python2.7/dist-packages/bs4/builder/_html5lib.py", line 70, in <module>
    class TreeBuilderForHtml5lib(html5lib.treebuilders._base.TreeBuilder):
AttributeError: 'module' object has no attribute '_base'

O que devo fazer?

    
por em_bis 24.08.2017 / 20:08

1 resposta

0

Não tenho certeza se isso ajuda, mas o beautifulsoup precisa de uma versão diferente para python2.7 do que para python3.6. bs4 é para python 3.6 e bs3 é para python2.7.

    
por James E. Sedlacek 08.12.2017 / 20:41

Tags