I am a very beginner for vscode and python and computer stuff in general.
I am having trouble importing pandas into vs code, and none of the previous posts was helpful for me since I literally can't understand it and can't follow their steps.
I am gonna show you what I have done so far.
First, I open the vscode and open terminal (powershell)
Second, I type pip3 install pandas and it successfully install pandas
For example, I ran that command again, it gave me "Requirement already satisfied"
enter image description here
Third, as it seemed pandas is installed correctly, I type py to open python in the terminal and type import pandas as pd
But, it gave me : import pandas as pd Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'pandas'
I really don't know why it is happening and what to do to fix this.
I will appreciate any help you can give me.
Thanks,

