模块' pandas_datareader'没有属性' get_data_yahoo'

时间:2017-05-17 12:34:36

标签: python-3.x anaconda yahoo-finance pandas-datareader

我尝试使用this SO question中指定的pandas-datareader来获取股市历史。

我已经安装了pandas-datareader:
conda install -c https://conda.anaconda.org/anaconda pandas-datareader 我在Windows 10上使用pycharm和anaconda3解释器

运行

我试图运行最基本的:

import pandas_datareader as pdr
pdr.get_data_yahoo('AAPL')

但是我收到一个错误: File "D:/Dropbox/Duo/documents docs/Projects/F500AquisitionQuality/m_and_a_quality/stock_utils.py", line 2, in <module> pdr.get_data_yahoo('AAPL') AttributeError: module 'pandas_datareader' has no attribute 'get_data_yahoo'

请注意,文件名与pandas无关,如this reddit comment(我在网上找到的唯一相关内容)

3 个答案:

答案 0 :(得分:2)

版本0.4.0中的get_data_yahoo存在问题(因为Yahoo更改了API)。

要修复它,您可以安装0.4.1版 (截至2017年5月20日尚未合并https://github.com/pydata/pandas-datareader/pull/331

以下代码帮助了我。我克隆了pandas-datareader源代码,更改了分支,使用pip3从源代码安装了包

git clone https://github.com/pydata/pandas-datareader cd pandas-datareader/ git remote add rgkimball http://github.com/rgkimball/pandas-datareader git fetch rgkimball fix-yahoo git checkout fix-yahoo pip3 uninstall pandas_datareader python3 setup.py install

答案 1 :(得分:1)

无法弄清楚问题,但我确实通过运行

解决了这个问题

pip uninstall pandas-datareader

然后 pip install pandas-datareader

答案 2 :(得分:1)

嗯,你只需要2件事 首先卸载lib -

pip uninstall pandas-datareader

然后需要使用 pip3 安装它(请注意它是pip3)

pip3 install pandas-datareader