본문 바로가기
파이썬

파이썬 팬더 : read_html

by º기록 2020. 11. 11.
반응형

위키 URL에서 미국 주를 추출하려고하는데 Python Pandas를 사용하고 있습니다.

import pandas as pd
import html5lib
f_states = pd.read_html('https://simple.wikipedia.org/wiki/List_of_U.S._states') 

그러나 위의 코드는 오류 L을 제공합니다.

ImportError Traceback (가장 최근 호출 마지막) in () 1 import pandas as pd


( 'bs4', 'html5lib')의 맛 : 662 if not _HAS_HTML5LIB: --> 663 raise ImportError("html5lib not found, please install it") 664 if not _HAS_BS4: 665 raise ImportError("BeautifulSoup4 (bs4) not found, please install it") ImportError : html5lib를 찾을 수 없습니다. 설치하십시오.

html5lib와 beautifulsoup4도 설치했지만 작동하지 않습니다. 누군가 pls를 도울 수 있습니까?

 

해결 방법

 

Mac에서 Python 3.4 실행

새로운 pyvenv

pip install pandas
pip install lxml
pip install html5lib
pip install BeautifulSoup4

그런 다음 예제를 실행하면 작동합니다.

import pandas as pd
import html5lib
f_states=   pd.read_html('https://simple.wikipedia.org/wiki/List_of_U.S._states') 

 

참조 페이지 https://stackoverflow.com/questions/34555135

 

 

반응형

댓글