import error; no module named Quandl

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

    check whether it exists with the installed modules by typing

    pip list

    in the command prompt and if there is no module with the name quandl then type

    pip install quandl

    in the command prompt . Worked for me in the jupyter

提交回复
热议问题