Reputation: 6132
I was trying to run some commands that needed me to update pandas
, and then numpy
, and so I did. Problem is now, when I try to look into a DataFrame in the variable explorer, they don't open and I get this error instead:
ImportError: No module named 'pandas.core.internals.managers'; 'pandas.core.internals' is not a package
Do you know what is happening?
Upvotes: 1
Views: 842
Reputation: 92
I had the same problem. I solved it installing the pandas version 0.24.2
pip install pandas==0.24.2
Upvotes: 1