I worked on pandas last night and didn't have any problems but today I opened jupyterlab on anaconda and got this error after typing "import pandas as pd". I searched the site for a long time to solve the error, but I couldn't find the solution. how can i fix this error?
ModuleNotFoundError: No module named 'pandas.core.frame'
CodePudding user response:
Try to install it using pip
!pip install pandas
Or
Try to upgrade it
!pip install pandas --upgrade