Home > Software design >  can't import pandas to jupyter lab in anaconda
can't import pandas to jupyter lab in anaconda

Time:10-16

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
  • Related