Open In App

How to Install Seaborn on Windows?

Last Updated : 09 Sep, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

In this article, we will look into the process of installing Python Seaborn on Windows.

Prerequisites:

For PIP Users:

PIP users can open up the command prompt and run the below command to install Python Seaborn Package on Windows:

pip install Seaborn

The following message will be shown once the installation is completed:

installing seaborn using PIP

To verify the installation use the below code in your python ide:

Python3




import seaborn as sns
sns.__version__


Output:

verifying installation of seaborn

For Conda Users:

Conda users can open up the Anaconda Power Shell Prompt and use the below command to install Python Seaborn package on Windows:

conda install -c anaconda seaborn

The following message will be shown once the installation is completed:

installing seaborn using conda

To verify the installation use the below code in your python ide:

Python3




import seaborn as sns
sns.__version__


Output:

verifying the seaborn installation


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads