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 |
Tags
- 항해플러스 백엔드 7기
- 스프링
- 스프링입문
- 자바공부
- 자바의정석 연습문제
- 항해플러스
- 불친절한 SQL 프로그래밍
- 스프링MVC
- 항해플러스 회고
- 불친절한SQL프로그래밍
- Python
- Java의정석
- java
- inflearn
- Numpy
- 스프링 핵심원리
- 항해플러스 백엔드
- 시큐어코딩
- Spring
- 자바연습문제
- 스프링 부트와 JPA
- 이것이자바다
- REGEXP_SUBSTR
- 제네릭
- 인프런
- Secure Coding
- 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:33xlsx_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