Search code examples
pandasdatareader

I can´t import panda data reader as web. why? in jupiter notebook


I am newbie in Python. I can´t import panda data reader as web. why? help me? please.

Thanks. Sergio

enter image description here


Solution

  • Correct sytax to import pandas data reader is

    import pandas_datareader.data as web
    

    If you still recieve the same error then most likely you are missing pandas_datareader package. Please install it using pip command:

    pip install pandas_datareader