I am using a MacBook pro and my terminal version in 2.7.2. However, I have downloaded both python2 and python3. When I 'pip install quandl' in the terminal I can import it using python2 but not python3?! Is this because my terminal is not updated or because the module is not supported my python3?
You have to use a different pip command to install modules for python3. The command is pip3
so to install the quandl module for python 3, run pip3 install quandl
.