반응형
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
반응형
'Python' 카테고리의 다른 글
[python] 리스트 문자열 중 길이가 가장 짧은 문자열 찾기 (1) | 2022.04.18 |
---|---|
[python] 파이썬에서 전역 변수 사용하기 - global (0) | 2022.04.08 |
[python] pip와 python 버전이 다를때 pip 설치하기 (0) | 2022.02.03 |
[python] selenium에서 Message: unknown error: session deleted because of page crash 에러 발생 (0) | 2022.02.01 |
[python] replace() argument 2 must be str, not int 에러 해결 (0) | 2022.01.29 |