cute n simple instruction :)
-
install pandas <3
pip install pandas
-
install openpyxl <3
pip install openpyxl
-
if you prefer to install two packages all at once <3
pip install pandas openpyxl
-
pdf conversion essential <3
pip install pdfplumber openpyxl Pillow pytesseract numpy opencv-python
-
verify installation (to confirm if the packages are installed correctly) <3
import pandas as pd import openpyxl print("Pandas version:", pd.__version__) print("OpenPyXL is installed.")
***notes: you can install as many python packages as you want, they won't interfere your script. even if you won't use them. what matters is whether your script needs a package and is missing from your environment :)