after using the command:
pip install pandas
this is the message I got:
Requirement already satisfied: pandas in c:\users\pathu\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (1.3.4)
Requirement already satisfied: pytz>=2017.3 in c:\users\pathu\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from pandas) (2021.3)
Requirement already satisfied: python-dateutil>=2.7.3 in c:\users\pathu\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from pandas) (2.8.2)
Requirement already satisfied: numpy>=1.17.3 in c:\users\pathu\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from pandas) (1.21.4)
Requirement already satisfied: six>=1.5 in c:\users\pathu\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from python-dateutil>=2.7.3->pandas) (1.16.0)
but after running the code in shell
>>> import pandas as pd
this is the error I got:
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
import pandas as pd
ModuleNotFoundError: No module named 'pandas'