'update seaborn from inside jupyter notebook

Here my problem:

sns.scatterplot(x=[x,x,x], y=[x,x,x])

AttributeError: module 'seaborn' has no attribute 'scatterplot'

I read that seaborn needs to be updated, to solve this. So I did:

!pip install seaborn --upgrade #or also !pip install seaborn==0.9.0
import seaborn as sns
sns.__version__

0.8.1

It's not updating, and I keep getting the same AttributeError. What am I missing?



Solution 1:[1]

Update jupyter notebook in the Anaconda navigator. All modules will get updated. This should resolve your issue.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 drops