Reputation: 1
I have python 3.10.4 installed and running perfectly fine, but was given a bigger assignment that seems best suited for pandas. I installed PyCharm (2022.1 Community edition, v11.0.14.1) and that seems to work fine.
I did all the steps to install pandas (ver 1.4.2) and it seems to be in place but no matter what I do as soon as I import it in to my program
import pandas as pd
I get the error:
no module named pandas
while in PyCharm, I do have the pandas package in place for the current project, but nothing seems to be working
Upvotes: 0
Views: 482
Reputation: 36
I believe the problem is with either interpreter or run configuration.
Let's elaborate on that, shall we?
First of all check at the bottom if you have a python interpreter associated with your current project: I have a venv python environment associated with the project
If you do too then perform these steps:
Run Configuration:
Upvotes: 1