Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 455
user3655574 Avatar asked May 25 '16 00:05

user3655574


People also ask

Which command is used to install Quandl?

Install virtualenv and tox using: pip install tox virtualenv. Run following command (you may notice slow performance the first time): python setup.py install.


2 Answers

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.

like image 64
EoinS Avatar answered Oct 13 '22 20:10

EoinS


Use below syntax all in lower case

import quandl

like image 42
Soumyaansh Avatar answered Oct 13 '22 20:10

Soumyaansh