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
I was facing the same problem. I am using python 3.7.5. By default pip install pandas command install version 1.0.3. So i revert to version 1.0.1.
python 3.7.5
pip install pandas
pip uninstall pandas pip install pandas==1.0.1
Now it is working without error. You may try it.