Skip to content Skip to sidebar Skip to footer

Pandas Not Loading In JupyterLab

Been working on a data science project for a few weeks in JupyterLab using Python 3 and Pandas w/o any issues. Today I can't load pandas via the standard import pandas as pd . (see

Solution 1:

Ultimately I solved this dependency issue by uninstalling and reinstalling Anaconda using this guide. This was in part aligned with @Trenton_M 's suggestion/info above as the reinstall rolled Pandas back from version 0.25.0 to version 0.24.2 while keeping JupyterLab version 1.0.2 and Jupyter Notebook version 6.0.0.

pandas.__version__

output

'0.24.2'

which is the default version listed for Anaconda.


Post a Comment for "Pandas Not Loading In JupyterLab"