...
soup = BeautifulSoup(html, "lxml")
File "/Library/Python/2.7/site-packages/bs4/__init__.py", line 152, in __init__
% ",".join(features))
bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested: lxml. Do you need to install a parser library?
Las salidas anteriores en mi terminal. Estoy en Mac OS 10.7.x. Tengo Python 2.7.1 y seguí este tutorial para obtener Beautiful Soup y lxml, que se instalaron correctamente y funcionan con un archivo de prueba separado ubicado aquí . En el script de Python que causa este error, he incluido esta línea:
from pageCrawler import comparePages
Y en el archivo pageCrawler he incluido las siguientes dos líneas:
from bs4 import BeautifulSoup
from urllib2 import urlopen
Se agradecería cualquier ayuda para descubrir cuál es el problema y cómo se puede resolver.
html
una url o el contenido html?