Install the latest version of seaborn (0.9.0) through pip

后端 未结 4 1322
醉话见心
醉话见心 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:08

    If you are going for developmental features of seaborn, try installing direct.

    pip install git+https://github.com/mwaskom/seaborn.git#egg=seaborn
    
    0 讨论(0)
  • 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
    
    0 讨论(0)
  • 2020-12-18 23:22

    This worked for me:

    conda install -c anaconda seaborn
    
    

    Credit: https://anaconda.org/anaconda/seaborn

    0 讨论(0)
  • 2020-12-18 23:26

    I was having seaborn 0.8.0. This worked for me.

    sudo -H pip install seaborn==0.9.0
    
    0 讨论(0)
提交回复
热议问题