I am new to Python and currently having trouble when importing some libraries.
I am using Python 3.8.
I have installed Pandas in the CMD usi
There are two error messages I have received in importing pandas, the one in the OP and the other one being
AttributeError: module 'pandas' has no attribute 'plotting'
I was able to mitigate the issues by reinstalling the package/library
pip uninstall pandas
pip install pandas==1.0.1
as another user pointed out before me. I am using Python 3.8.2 in conjunction with pandas 1.0.1 without hiccup now.