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
반응형
'Python' 카테고리의 다른 글
[python] ValueError: Your version of xlrd is 2.0.1. In xlrd >= 2.0, only the xls format is supported. Install openpyxl instead. (0) | 2021.03.23 |
---|---|
[python] AttributeError: 'set' object has no attribute 'items' (0) | 2021.03.23 |
PyQt .ui 파일과 Qt designer.exe 연동설정 (0) | 2021.03.21 |
[python]파이썬 엑셀 파일 읽기 함수 (0) | 2021.03.08 |
[python] 파이썬 파일 선택 창 띄우기 (2) | 2021.03.08 |
댓글