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 uninstall
I am following a Youtube tutorial where they use 'Quandl'. It should be quandl. Change it and it won't throw error.
Solved the issue by installing the below one:
conda install -c dhirschfeld quandl=3.0.1
Sometimes the quandl module is present with "Quandl" in following location C:\Program Files (x86)\Anaconda\lib\site-packages\Quandl.
But the scripts from Quandl refer to quandl in import statements. So, renaming folder Quandl to quandl worked for me.
New path: "C:\Program Files (x86)\Anaconda\lib\site-packages**quandl**".
With Anaconda\Jupyter notebook go to the install directory (C:\Users\<USER_NAME>\AppData\Local\Continuum\anaconda3) where <USER_NAME> is your logged in Username. Then execute in command prompt:
None of the solutions listed here worked for me. I ended up installing it from Jupyter Notebook itself.
import sys
!{sys.executable} -m pip install quandl
import quandl
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