I'm using Anaconda on Win10, when I'm trying execute simple cell on localhost containing seaborn, I get dead kernel message withing 5 second, after rebooting it is just infinity execution of sns plot cell. For example in titanic dataset
There is no such problem using Collab or Binder No problem with collab; No problem using Binder, online Jupyter Notebook
Seems that I'm missing something obvious. Code:
import seaborn as sns
import pandas
import matplotlib.pyplot as plt
df = sns.load_dataset('titanic')
df.head()
sns.countplot(x='sex',data=df)