This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Scott Tucholka
Recipients Scott Tucholka, eric.araujo, paul.moore, steve.dower, tim.golden, zach.ware
Date 2017-10-09.09:35:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CAAueH1NEG1jnu2Ke0CARfp2LxLXzGo0FsRuvLtnvECrwpwczDw@mail.gmail.com>
In-reply-to <1507309056.54.0.213398074469.issue31666@psf.upfronthosting.co.za>
Content
I am running Windows 10 Enterprise x64 and use Spyder (Python 3.6).

This is my code:
import pandas as pd
import pandas_datareader as dr
dr.get_data_yahoo('AAPL')

I am expecting that the module will import and the get_data_yahoo will
return results for 'AAPL'.

This is my log:
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 dr
dr.get_data_yahoo('AAPL')
Traceback (most recent call last):
  File "<ipython-input-1-43a2f11394e3>", line 2, in <module>
    import pandas_datareader as dr
ModuleNotFoundError: No module named 'pandas_datareader'

Thanks

On Fri, Oct 6, 2017 at 12:57 PM, Éric Araujo <report@bugs.python.org> wrote:

>
> New submission from Éric Araujo <merwok@netwok.org>:
>
> Hello!  Your bug report gives very little information for us to help you.
> Can you give details such as: your environement / setup, your code,
> expected result and full error message?
>
> https://devguide.python.org/tracker/#reporting-an-issue
>
> ----------
> nosy: +merwok
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <https://bugs.python.org/issue31666>
> _______________________________________
>
History
Date User Action Args
2017-10-09 09:35:23Scott Tucholkasetrecipients: + Scott Tucholka, paul.moore, tim.golden, eric.araujo, zach.ware, steve.dower
2017-10-09 09:35:23Scott Tucholkalinkissue31666 messages
2017-10-09 09:35:23Scott Tucholkacreate