I've recently upgraded my Pandas version from 0.20.0 to 1.0.5 to be able to use the explode() function. Then when I tried reading an Excel file, it threw an error Pandas requires version '1.1.0' or newer of 'xlrd' (version '1.0.0' currently installed). So I installed xlrd-1.2.0 using my Anaconda prompt and then restarted the kernel in my Jupyter notebook but I still keep getting the same error. Checking the xlrd version in the notebook using the following shows 1.0.0 as the installed version.
import pkg_resources
pkg_resources.get_distribution("xlrd").version
I even tried !pip install xlrd in the notebook but it says Requirement already satisfied: xlrd in c:\users\<username>\appdata\local\continuum\anaconda3\lib\site-packages (1.0.0)
I'm not sure what to do as I can't run any of my code now. Please help!