Reputation: 53
I was trying to import seaborn in Jupyter notebook on a Mac. This used to work fine, but for some reason, it keeps giving me this error now
I have tried to reinstall seaborn and pandas. I also restarted my notebook, but that didn't work. Is there a way to fix this?
Upvotes: 2
Views: 350
Reputation: 2472
Are you sure you are using a correct kernel on Jupyter?
Do you install the packages on the terminal or inside the notebook?
Run print(help(modules)
to see if you have all packages that you were supposed to have.
Upvotes: 1