Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you update seaborn to latest version (v0.9)?

This is my first question :|

I am currently running seaborn version 0.8.1 in Python3. How do I update to v0.9?

like image 828
Liam Avatar asked Sep 21 '18 00:09

Liam


People also ask

What is the latest version of seaborn?

Announcing the release of seaborn 0.12 | by Michael Waskom | Sep, 2022 | Medium.

How do I check my current version of seaborn?

Check seaborn Version Windows To check which version of seaborn is installed, use pip show seaborn or pip3 show seaborn in your Windows CMD, command line, or PowerShell.


1 Answers

Many ways you could do it, the most succinct and straight-forward way may be:

pip install seaborn --upgrade

If that doesn't give you the correct version, you can specify it explicitly:

pip install seaborn==0.9.0
like image 131
chickity china chinese chicken Avatar answered Sep 28 '22 04:09

chickity china chinese chicken