Liam
Liam

Reputation: 144

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?

Upvotes: 9

Views: 40582

Answers (1)

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

Upvotes: 14

Related Questions