본문 바로가기

Python

bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested: lxml. 문제 해결 방법

반응형

 

 

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

 

파이썬에서 beautifulsoup4를 제대로 설치했다고 생각했는데, 위와 같은 에러가 뜰 수 있다. 

이떄는 아래와 같이 lxml 패키지도 같이 설치해주면 된다.

 

# pip install lxml
Collecting lxml
  Cache entry deserialization failed, entry ignored
  Downloading https://files.pythonhosted.org/packages/fd/9c/d0bbb2ac23561738629cf6a04c660f721774905669b02bb764237c8bd48c/lxml-4.8.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (5.6MB)
    100% |████████████████████████████████| 5.6MB 163kB/s 
Installing collected packages: lxml
Successfully installed lxml-4.8.0

 

 

반응형