Skip to content Skip to sidebar Skip to footer

Import Error; No Module Named Quandl

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 py

Solution 1:

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.

Solution 2:

Use below syntax all in lower case

import quandl

Solution 3:

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

Solution 4:

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

Solution 5:

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

Post a Comment for "Import Error; No Module Named Quandl"