본문 바로가기
Python

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

by inspireman 2021. 3. 23.
728x90

|파이썬 에러코드|


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

 

발생 경우 :  변수에 xml 형식으로 res.text 파일을 저장하는데 xml 라이브러리가 없을 경우 발생하는 에러 코드

 

soup = BeautifulSoup(res.text, "lxml")

 

원인 : lxml 라이브러리가 없을 경우 발생

 

해결 방법 : lxml 라이브러리 설치 pip install lxml

 

pip install lxml

728x90
반응형

댓글