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
import quandl
, it always said "no module named quandl
")Use below syntax all in lower case
import quandl
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