import error; no module named Quandl

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

    None of the solutions listed here worked for me. I ended up installing it from Jupyter Notebook itself.

    import sys
    
    !{sys.executable} -m pip install quandl
    
    import quandl
    

提交回复
热议问题