import error; no module named Quandl

前端 未结 15 781
暖寄归人
暖寄归人 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:13

    Try with lower case, import is case sensitive and it's as below:

    import quandl
    

    Did you install with pip? If so ensure quandl is among the listed installed modules with

    pip list
    

    Otherwise try

    help('modules')
    

    To make sure it was installed properly. If you don't see quandl listed , try to reinstall.

提交回复
热议问题