import error; no module named Quandl

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

    I am following a Youtube tutorial where they use 'Quandl'. It should be quandl. Change it and it won't throw error.

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

    Solved the issue by installing the below one:

    conda install -c dhirschfeld quandl=3.0.1
    
    0 讨论(0)
  • 2020-12-16 12:30

    Sometimes the quandl module is present with "Quandl" in following location C:\Program Files (x86)\Anaconda\lib\site-packages\Quandl.

    But the scripts from Quandl refer to quandl in import statements. So, renaming folder Quandl to quandl worked for me.

    New path: "C:\Program Files (x86)\Anaconda\lib\site-packages**quandl**".

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

    With Anaconda\Jupyter notebook go to the install directory (C:\Users\<USER_NAME>\AppData\Local\Continuum\anaconda3) where <USER_NAME> is your logged in Username. Then execute in command prompt:

    1. python -m pip install Quandl
    2. import quandl
    0 讨论(0)
  • 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
    
    0 讨论(0)
  • 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

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