#1. What error occurredError Page, Cause of error[ Error Page ]xlrd 패키지로 xlsx 파일을 열 수 없는 문제가 발생한다.xlrd.biffh.XLRDError: Excel xlsx file; not supported [ Cause of error ]2.00 부터 xlrd 패키지에서 xlsx 파일을 지원하지 않기 때문이다.#2. How fix the errorConvert to xls, Version Downgrade[ Convert to xls ]xlsx 파일을 xls 파일로 바꾸어 사용할 수 있다.구글에 xlsx to xls converter 검색하면 여러가지 온라인 변환기나 프로그램을 다운받아 사용할 수 있다.[ Version Downgrade ]xlsx 파일을 지원하는 1.2.0 버전으로 패키지를 재설치하여 사용할 수 있다.$ pip3 install xlrd==1.2.0#3. ReferenceDocument[ Document ]PyPi> Link

#1. What error occurredError Page, Cause of error[ Error Page ]libf77blas.so.3 파일이 없어거나 디렉토리라서 열 수 없는 문제가 발생한다.Traceback (most recent call last): File "main.py", line 6, in <module> import pybithumb File "/home/pi/.local/lib/python3.7/site-packages/pybithumb/__init__.py", line 1, in <module> from pybithumb.client import Bithumb File "/home/pi/.local/lib/python3.7/site-packages/pybithumb/client.py", line 2, in <module> from pandas import DataFrame File "/home/pi/.local/lib/python3.7/site-packages/pandas/__init__.py", line 17, in <module> "Unable to import required dependencies:\n" + "\n".join(missing_dependencies) ImportError: Unable to import required dependencies: numpy: IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE! Importing the numpy C-extensions failed. This error can happen for many reasons, often due to issues with your setup or how NumPy was installed. We have compiled some common reasons and troubleshooting tips at: https://numpy.org/devdocs/user/troubleshooting-importerror.html Please note and check the following: * The Python version is: Python3.7 from "/usr/bin/python3" * The NumPy version is: "1.20.2" and make sure that they are the versions you expect. Please carefully study the documentation linked above for further help. Original error was: libf77blas.so.3: cannot open shared object file: No such file or directory [ Cause of error ]PyPI에서 다운받은 NUMpy 패키지 이용 시 발생하는 문제이다.#2. How fix the errorAdd to scheme, Delete new line[ Add to scheme ]NUMpy는 OpenBLAS를 사용하여 무거운 작업을 수행한다.즉, 타사 패키지에서 제공하는 공유 객체를 불러와 사용한다.PyPI의 공식 NUMpy는 다른 패키지와 통합하여 전체 데이터를 전송한다.piwheels에서 제공하는 wheels은 전체 배송이 아닌 별도의 패키지를 설치하는 형태이다.아래의 패키지를 설치하여 별도의 패키지를 설치하는 형태로 사용 가능하다.$ sudo apt install libatlas-base-devNumPy uses OpenBLAS to do its heavy linalg work, that means NumPy calls out into a shared object provided by a third party package. The official NumPy wheels on PyPI incorporate that other package into the wheel and ship the whole thing together. The wheels provided by the https://www.piwheels.org people do not: they depend on you installing the OpenBLAS package separately. So if you get NumPy from them, you need to install the package.#3. ReferenceGitHub[ GitHub ]reasley - Original error was> linknumpy> Linksudo apt-get install libatlas-base-devhttps://github.com/numpy/numpy/issues/14772

Python Error List시리즈#1. What error occurredError Page, Cause of error[ Error Page ]xlrd 2.0 미만 버전은 read_excel을 사용할 수 없다고 출력된다.ValueError: Your version of xlrd is 2.0.1. In xlrd >= 2.0, only the xls format is supported. Install openpyxl instead.[ Cause of error ]xlrd 2.0 버전에서 발생하는 문제#2. How fix the errorAdd to scheme, Delete new line[ Add to scheme ]xlrd 말고 openpyxl을 통해 문제없이 사용할 수 있다.$ pip install openpyxl#3. ReferenceTstory[ Tstory ]hanker - read_excel error> link

이미지 삽입 Raspberry Pi List 시리즈 #1. Monitoring 개요, wpip3 install --ignore-installed ${PACKAGE_NAME}pip3 install --ignore-installed firebase-admin