ImportError: cannot import name 'PandasError'

前端 未结 2 2089
花落未央
花落未央 2021-02-14 13:41

I am very new to Python 3x, running on a mac.

Currently using a sentdex tutorial for python with finance, tried running the following script:

import date         


        
2条回答
  •  清歌不尽
    2021-02-14 14:17

    I think you installed pandas v. 0.20.1 released yesterday. pandas-datareader is still not compatible with this version, for the moment you should stay on pandas 0.19.2:

    pip install -U pandas==0.19.2
    

提交回复
热议问题