[PYTHON] bs4.FeatureNotFound: xml

1. 현상

bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested: xml. Do you need to install a parser library?


2. 원인

- BeautifulSoup4가 사용하려는 파서 라이브러리가 설치되어 있지 않음.


3. 해결방법

- xml 라이브러리 설치

1
pip install xml

혹은

- lxml 라이브러리 설치

1
pip install lxml

끝.