Install the latest version of seaborn (0.9.0) through pip

后端 未结 4 1337
醉话见心
醉话见心 2020-12-18 23:04

I want to create a catplot using seaborn package and I know that in order to be able to do that I need the latest version of seaborn(0.9.0). I installed the package for cond

4条回答
  •  攒了一身酷
    2020-12-18 23:09

    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
    

提交回复
热议问题