I've installed quanld with pip install quandl
command and it was successful. But when I tried to import it in VSCODE, it returns an error.
Update: Installing quandl with pip.
and now trying to import but lowercase
but it doesn't work yet
I've installed quanld with pip install quandl
command and it was successful. But when I tried to import it in VSCODE, it returns an error.
Update: Installing quandl with pip.
and now trying to import but lowercase
but it doesn't work yet
Using the lowercase works to import Quandl from version 3! Probably a change in the namespace from the previous versions as mentioned in the Quandl Blog.
import quandl
Also try to make sure you have it installed in the required python version in case your system has multiple versions of python installed.
pip3 install quandl
This works for python3.
If you have a virtual env setup, make sure you have the module installed inside the env!