Hi I was using pandas to read an .xls file, since it's the old version Excel file, I specified the engine = "xlrd". However it says Missing optional dependency 'xlrd' or No module named 'xlrd' when I was trying to import it. I looked through all the method on the website, it still does not work.
Some methods I've tried:
which python-> its under../.../venv/bin/pythonpip3 install xlrdorpip install xlrdorconda install xlrdit showsRequirement already satisfiedpip install --upgrade xlrd----->Requirement already satisfiedpip list---> it clearly shows packagexlrdand the version is2.0.1- I tried restart the kernel and restart the VScode and even reactivate my venv. Still
Missing optional dependency 'xlrd'when I tried to use pd.read orNo module named 'xlrd'when I tried to import this module.
Can any one help me on that how to properly use the xlrd module or xlrd engine... to get that .xls file read.
Thanks!