Appreciate that this question has been asked a number of times before. I've spent a few hours working through the suggestions in previous answers but am still stuck.
I have installed Anaconda 1.9.7 and PyCharm 2019.2 on my Mac running Mojave version 10.14.5.
Through Conda 4.7.10 I have Python 3.7.3 and have pandas 0.25.0 installed.
When I create a new project in PyCharm and try to run the line:
import pandas as pd
I get the error message:
ModuleNotFoundError: No module named 'pandas'
Attempted solutions:
- Have uninstalled and reinstalled PyCharm
- Checked that all relevant programmes are installed and up to date
- Checked the project interpreter is correct:
Conda Environment Location: /Users/Barton/PyCharm/Get Pandas to Work Python Version: 3.7 Conda executable: /Users/Barton/anaconda3/bin/conda
Any help much appreciated.
Thanks David
conda install -c anaconda pandas? - PyStraw45