크롤링 공부 중, 다음과 같은 에러를 마주침. soup = BeautifulSoup(res.text, 'lxml') File "C:\Users\didwu\anaconda3\envs\flask\lib\site-packages\bs4\__init__.py", line 243, in __init__ raise FeatureNotFound( bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested: lxml. Do you need to install a parser library? lxml은 파이썬으로 XML, HTML 처리를 할 수 있는 라이브러리이다. 이것을 pip로 설치하면 해결된다. pip install lxml