I am running Windows 10 64 bit, python 3.6, spyder. I have both pandas_datareader and pandas_datareader-0.5.0.dist-info installed in the same site packages as pandas. When I attempt to import the module I receive the following error message:
Python 3.6.2 |Anaconda, Inc.| (default, Sep 19 2017, 08:03:39) [MSC v.1900 64 bit (AMD64)]
Type "copyright", "credits" or "license" for more information.
IPython 6.1.0 -- An enhanced Interactive Python.
import pandas as pd
import pandas_datareader as pdr
Traceback (most recent call last):
File "", line 1, in
import pandas_datareader as pdr
ModuleNotFoundError: No module named 'pandas_datareader'
Who do I import the pandas_datareader via another method or have python recognize the module?
I am running Windows 10 64 bit, python 3.6, spyder. I have both pandas_datareader and pandas_datareader-0.5.0.dist-info installed in the same site packages as pandas. When I attempt to import the module I receive the following error message:
Python 3.6.2 |Anaconda, Inc.| (default, Sep 19 2017, 08:03:39) [MSC v.1900 64 bit (AMD64)]
Type "copyright", "credits" or "license" for more information.
IPython 6.1.0 -- An enhanced Interactive Python.
import pandas as pd
import pandas_datareader as pdr
Traceback (most recent call last):
File "", line 1, in
import pandas_datareader as pdr
ModuleNotFoundError: No module named 'pandas_datareader'
Who do I import the pandas_datareader via another method or have python recognize the module?