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) <ipython-input-13-727a0c18d61b> in <module> ----> 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?
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?