Skip to content Skip to sidebar Skip to footer

How To Fix Modulenotfounderror: No Module Named 'pandas_datareader'

ModuleNotFoundError: No module named 'pandas_datareader' Hello peeps, I need help with this ModuleNotFoundError: No module named 'pandas_datareader'. i have installed pandas_datare

Solution 1:

I am having the same issue. I use Anaconda under Win10, Spyder editor. if I do conda --list I see the package. There are there versions, an old one for py3.6, newer py3.7 and newest(0.7.1) for py 3.7 I use python 3.7. If I attempt to reinstall it, conda it says all requirement fulfilled and keeps it the same.

I have tried 3-4 scripts with same issue. If you have a resolution, I would appreciate anupdate. Will post here if I can figure it out.

Solution 2:

If you are using Anaconda, just type on terminal:

conda install -c anaconda pandas-datareader

Solution 3:

Try this on terminal:

pip3 install pandas_datareader

If you're using Anaconda, just open its prompt and type: pip install pandas_datareader

Post a Comment for "How To Fix Modulenotfounderror: No Module Named 'pandas_datareader'"