import error; no module named Quandl

前端 未结 15 755
暖寄归人
暖寄归人 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
    1. install quandl for version 3.1.0
    2. Check package path where you installed, make sure it's name is quandl not Quandl (my previous name is Quandl, so when I use import quandl, it always said "no module named quandl")
    3. If your package's name is Quandl, delete it and reinstall it. (I use anaconda to install my package, it's covenient!)
    0 讨论(0)
  • 2020-12-16 12:38

    Use below syntax all in lower case

    import quandl

    0 讨论(0)
  • 2020-12-16 12:39

    If the solutions above is not working for you (it means you are using python 3), do the following (on Linux);

    sudo apt install python3-pip
    

    Then do ;

    pip3 install quandl
    

    you should be able to import and use quandl now

    0 讨论(0)
提交回复
热议问题