Open In App

How to Install Seaborn on Windows?

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:



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




import seaborn as sns
sns.__version__

Output:

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:

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




import seaborn as sns
sns.__version__

Output:

Article Tags :