Pycharm has no module named 'pandas'

I read all the topics, but I can not solve my problem:

     Traceback (most recent call last):
     File "/home/.../.../.../reading_data.py", line 1, in <module>
     import pandas as pd
     ImportError: No module named pandas     

This is my environment:

Ubuntu 14.04

Pycharm Version: 2016.1.4

Version for Python: 2.7.10

Pandas Version: 0.18.1

Pandas works in Anaconda, in Jupiter too. Can anyone suggest me how to fix this problem?

+4
source share
1 answer

Have you selected a project translator for your current project? https://www.jetbrains.com/help/pycharm/2016.1/configuring-python-interpreter-for-a-project.html

follow this link, check if packages are included in packages.

+4
source

All Articles