Exception has occurred: ModuleNotFoundError No module named 'pandas'

I have install pandas even though i cant able to run any pandas module programs

IDE : Visual Studio Code

Most like this is because the version of python you installed the modules for is not the same version that VS code is using.

You can see the version of python for your pip command using pip --version abd for your python with python --version.

Also of interest is to use the py.exe program to list all the versions of python you have installed py -0

1 Like