import error; no module named Quandl

前端 未结 15 788
暖寄归人
暖寄归人 2020-12-16 11:37

I am am trying to run the Quandl module on a virtualenv which I have uninstalled packages only pandas and then Quandl,

I am running Python 2.7.10 - I have uninstall

15条回答
  •  一生所求
    2020-12-16 12:16

    i had the same error message ' ImportError: No module named Quandl ' so what i did was to just change it to

    import quandl
    print(df.head())
    

提交回复
热议问题