Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find Seaborn version [duplicate]

I have installed Seaborn in my machine. The Seaborn is working fine. I need to find the version of Seaborn installed. What command do I use to find the version of the Seaborn?

like image 927
Biju Oommen Avatar asked Aug 31 '18 21:08

Biju Oommen


People also ask

How to update Seaborn and all other packages?

conda update --name env --all will update seaborn and all other packages. It is not recommended to use pip to install packages that already exist within the conda environment. Show activity on this post. I was having seaborn 0.8.0.

What version of Python does Seaborn run on?

Most notably, all support for Python 2 has now been dropped. Support for Python 3.5 has also been dropped. Seaborn is now strictly compatible with Python 3.6+. Minimally supported versions of the dependent PyData libraries have also been increased, in some cases substantially.

How do I install Seaborn on Linux?

Install Seaborn. If you have Python and PIP already installed on a system, install it using this command: C:Users Your Name >pip install seaborn If you use Jupyter, install Seaborn using this command:

How do I check if my Seaborn and Pip versions match?

You can use the following commands to check if your seaborn and pip versions match: If the two versions don’t match, you need to either install an older version of seaborn or upgrade your Python version. Once you’ve successfully installed seaborn, you can use the following command to display the seaborn version in your environment:


1 Answers

Use __version__

import seaborn as sns
sns.__version__

'0.7.1'
like image 52
piRSquared Avatar answered Oct 23 '22 03:10

piRSquared