...
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?
위의 결과는 내 터미널에서 출력됩니다. Mac OS 10.7.x에 있습니다. Python 2.7.1이 있고이 자습서 를 따라 Beautiful Soup 및 lxml을 얻었습니다. 이는 성공적으로 설치되고 여기에 있는 별도의 테스트 파일로 작동 합니다 . 이 오류를 발생시키는 Python 스크립트에서이 줄을 포함 시켰습니다.
from pageCrawler import comparePages
그리고 pageCrawler 파일에서 다음 두 줄을 포함했습니다.
from bs4 import BeautifulSoup
from urllib2 import urlopen
문제가 무엇인지, 어떻게 해결할 수 있는지 알아내는 데 도움이된다면 감사하겠습니다.
html
의 URL 또는 html로 내용은?