I am new to python. I have various versions of python installed in my Mac.
The pandas is installed in python 3.5. I want to use python 2.7. However when I do
import pandas
It says:
ImportError: No module named pandas
I tried pip install pandas but it is installing in python3.5
Can anyone suggest me how I can install modules for specific python
Tanya