ModuleNotFoundError: No module named ‘pandas’
Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I fixed the same problem with the below commands…
Type
python
on your terminal. If you see python version 2.x, then run these two commands to install Pandas:sudo python -m pip install wheel
and
sudo python -m pip install pandas
Else if you see python version 3.x, then run these two commands to install Pandas:
sudo python3 -m pip install wheel
and
sudo python3 -m pip install pandas
Good Luck!