No module named pandas_datareader

后端 未结 12 1692
日久生厌
日久生厌 2021-02-07 06:58

I have just installed pandas_datareader using pip install pandas-datareader which ran successfully.

Now I am trying to use it for a tutorial an

12条回答
  •  悲哀的现实
    2021-02-07 07:59

    Had the same issue. This resolved it for me:

    after activating the env, run:

    pip install pip --upgrade
    pip install pandas-datareader
    pip install jupyter (as i was using a jupyter notebook)
    

    However, if you are running anaconda, use:

    conda install -c anaconda pandas-datareader
    

提交回复
热议问题