I am trying to import pandas on Python (Linux) but it is giving me the following error:
ModuleNotFoundError
Traceback (most recent call last) in () 1 import pandas as pd ModuleNotFoundError: No module named 'pandas'
I am trying to import pandas on Python (Linux) but it is giving me the following error:
ModuleNotFoundError
Traceback (most recent call last) in () 1 import pandas as pd ModuleNotFoundError: No module named 'pandas'
try below code to install pandas.
sudo pip3 install pandas
Above code work for me .
Try installing with this:
pip install pandas
If the install fails due to lacking privilege, do this:
sudo pip install pandas
Note: You may have to use pip3 is your default Python version is 2.X