quandl-python icon indicating copy to clipboard operation
quandl-python copied to clipboard

No module named 'quandl'

Open Starq7 opened this issue 4 years ago • 1 comments

in Jupiter Notebook 6.1.4:

import quandl aapl = quandl.get("WIKI/AAPL", start_date="2006-10-01", end_date="2012-01-01")


ModuleNotFoundError Traceback (most recent call last) in ----> 1 import quandl 2 aapl = quandl.get("WIKI/AAPL", start_date="2006-10-01", end_date="2012-01-01")

ModuleNotFoundError: No module named 'quandl'

C:\Users\777>pip list Package Version


certifi 2020.6.20 chardet 3.0.4 idna 2.10 inflection 0.5.1 lxml 4.6.2 more-itertools 8.7.0 numpy 1.20.0 pandas 1.2.1 pip 21.0.1 python-dateutil 2.8.1 pytz 2021.1 Quandl 3.6.0 requests 2.24.0 setuptools 49.2.1 six 1.15.0 urllib3 1.25.11 vk-api 11.9.0

Why such a mistake? Why is the module name with a capital letter?

Starq7 avatar Feb 13 '21 18:02 Starq7

Hi,

I had the same issue in JupyterLab 2.2.6. Solved with

conda install quandl

Cheers

MigDz avatar Feb 24 '21 22:02 MigDz