Apparently conda has not yet integrated seaborn 0.9.0 into it's default channel. You may still try to get it through conda-forge
conda install -c conda-forge seaborn
You can also use pip from within the conda environment in use.
> activate
(base) > python -mpip install seaborn==0.9.0
Current versions of the Anaconda distribution already have seaborn
installed, so conda update seaborn
will update the package to the currently available version on the default / available conda channel. All packages can be updated with conda update --all
.
conda update --name env seaborn
will update a specific environment, env
in this case.
conda install --name env seaborn
will install to a specific environment.
conda update --name env --all
will update seaborn and all other packages.
It is not recommended to use pip
to install packages that already exist within the conda environment.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…