Notice
Recent Posts
Recent Comments
Link
목록xlrd오류 (1)
JY Tech
[파이썬]xlrd.biffh.XLRDError(xlrd오류)
엑셀에 있는 링크를 타고 들어가 이미지를 다운받으려고 아래와 같은 코드를 작성했다 import os import pandas as pd import requests excel_file_path = '파일명.xlsx' df = pd.read_excel(excel_file_path) download_folder = '목록' os.makedirs(download_folder, exist_ok=True) 중략... print('다운로드 및 저장 완료') 그런데 Missing optional dependency 'xlrd'. Install xlrd 이런 오류가 떴다. 파이썬을 하다가 install~~가 나오면 대부분은 pip를 통해 설치하면 해결된다. pip사용법은 간단하다. 1. cmd에 들어가서 2. 'pip..
Programming/Error Solution
2023. 11. 10. 14:31