3
votes

Seaborn will not update to the latest version (0.11.0) in Anaconda. When doing a conda search seaborn, the 0.10.0, 0.10.1, and 0.11.0 versions are listed, but the associated build is listed as py_0 for each. When attempting to update in Anaconda, version 0.9.0 remains.

How can I go about getting the latest version? I've tried installing via pip and conda-forge to no avail (conda-forge fails when solving environment).

Thank you!

2
are you working in your base environment? try creating a new onePaul H

2 Answers

3
votes

Try to use this:

conda install seaborn=0.11.0

If that doesn't work, create a new environment and do the same thing.

1
votes

Try to use this:

pip install --upgrade seaborn