Reputation: 144
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
Reputation: 8047
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