aparece este erro:
distributed 1.21.8 requires msgpack, which is not installed.
You are using pip version 10.0.1, however version 20.1b1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command
aparece este erro:
distributed 1.21.8 requires msgpack, which is not installed.
You are using pip version 10.0.1, however version 20.1b1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command
Olá Henrique.
Está utilizando o Anaconda ?
Se sim pode tentar utilizar esse comando.
conda install -c anaconda msgpack-python
Se não resolver poderia me informar a versão que está utilizando.
Fico no aguardo, bons estudos.
Muito obrigado pelo retorno, então eu utilizo o Jupyter, desde já, obrigado
Olá Henrique, consegue me passar a versão que está utilizando ?
Instalei o Anaconda aqui e utilizei o Jupyter Notebook.
E o seaborn já veio instalado.
Você poderia tentar rodar o import e ver se ele gera algum erro.
Pode usar esse código para testar.
import seaborn as sns
sns.set(style="ticks")
# Load the example dataset for Anscombe's quartet
df = sns.load_dataset("anscombe")
# Show the results of a linear regression within each dataset
sns.lmplot(x="x", y="y", col="dataset", hue="dataset", data=df,
col_wrap=2, ci=None, palette="muted", height=4,
scatter_kws={"s": 50, "alpha": 1})
Fico no aguardo, bons estudos.