This is my first question :|
I am currently running seaborn version 0.8.1 in Python3. How do I update to 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?
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