Conda python3.6无模块名为'Quandl'

时间:2017-07-31 04:28:26

标签: python machine-learning anaconda quandl

我尝试运行具有导入Quandl的代码。发生以下错误。我已经通过pip,conda和whl文件安装了quandl,并且所有这些方法都不起作用。

runfile('C:/Users/Administrator/Desktop/New folder/stock reinforce/untitled6.py', wdir='C:/Users/Administrator/Desktop/New folder/stock reinforce')
Traceback (most recent call last):

  File "<ipython-input-1-adf3164815a5>", line 1, in <module>
    runfile('C:/Users/Administrator/Desktop/New folder/stock reinforce/untitled6.py', wdir='C:/Users/Administrator/Desktop/New folder/stock reinforce')

  File "C:\ProgramData\Anaconda3\lib\site-packages\spyder\utils\site\sitecustomize.py", line 880, in runfile
    execfile(filename, namespace)

  File "C:\ProgramData\Anaconda3\lib\site-packages\spyder\utils\site\sitecustomize.py", line 102, in execfile
    exec(compile(f.read(), filename, 'exec'), namespace)

  File "C:/Users/Administrator/Desktop/New folder/stock reinforce/untitled6.py", line 15, in <module>
    import Quandl

ModuleNotFoundError: No module named 'Quandl'

1 个答案:

答案 0 :(得分:1)

导入区分大小写。也许你会有更好的运气:

import quandl

https://www.quandl.com/tools/python