I have installed anaconda. Now when i am trying to run
import pandas as pd
I am getting the following error
Traceback (most re
I'm using python 3.4 and Anaconda3 4.2.
I had the same problem, but it worked (the import pandas works now anyway) for me to install pandas with pip by writing:
import pandas
python -m pip install pandas
Good luck!