import error; no module named Quandl

user3655574 picture user3655574 · May 25, 2016 · Viewed 42.3k times · Source

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 uninstalled all other python versions, but its still giving me the issue of 'ImportError: No module named Quandl'. Do you know what might be wrong? Thanks

Answer

EoinS picture EoinS · May 25, 2016

Try with lower case, import is case sensitive and it's as below:

import quandl

Did you install with pip? If so ensure quandl is among the listed installed modules with

pip list

Otherwise try

help('modules')

To make sure it was installed properly. If you don't see quandl listed , try to reinstall.