I'm trying to make pandas module (that I've install through pip) working with Python 3.5.
When I'm doing import pandas
in Python 2.7 everything is fine, but I get the following error with 3.5 version:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'pandas'
Any idea why it's not working ? Thanks.