Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 서블릿
- 스프링입문
- Python
- Java의정석
- 김영한
- 분석함수
- 자바의정석 연습문제
- REGEXP_SUBSTR
- JPA
- 항해플러스
- 시큐어코딩
- 스프링MVC
- 스프링
- 자바연습문제
- Secure Coding
- 이것이자바다
- 자바공부
- 제네릭
- 불친절한 SQL 프로그래밍
- 항해플러스 백엔드
- Spring
- 인프런
- docker
- inflearn
- java
- 자바의정석
- 불친절한SQL프로그래밍
- Numpy
- 스프링 핵심원리
- 스프링 부트와 JPA
Archives
- Today
- Total
Continuous Challenge
Python Data Analysis (1) - read_excel(), read_html() error 본문
Programming/[2019] Python Data Analysis
Python Data Analysis (1) - read_excel(), read_html() error
응굥 2019. 1. 16. 12:33728x90
728x90
xlsx_df = pd.read_excel( 'D:\Python\pandas_exercise\Excel_Sample.xlsx', sheet_name = 'Sheet1' )
-> error 발생.
=> cmd 창에서 xlrd 를 설치해주었더니 해결되었다.
pip install xlrd
html_df = pd.read_html('http://www.fdic.gov/bank/individual/failed/banklist.html')
-> error 발생. lxml not found, please install it
=> cmd 창에서 python실행 후 lxml을 설치해주었더니 해결되었다.
pip install lxml
728x90
728x90
Comments