Wednesday, July 3, 2024
HomeLanguagesPythonHow to Install Seaborn on Windows?

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:

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

Shaida Kate Naidoo
am passionate about learning the latest technologies available to developers in either a Front End or Back End capacity. I enjoy creating applications that are well designed and responsive, in addition to being user friendly. I thrive in fast paced environments. With a diverse educational and work experience background, I excel at collaborating with teams both local and international. A versatile developer with interests in Software Development and Software Engineering. I consider myself to be adaptable and a self motivated learner. I am interested in new programming technologies, and continuous self improvement.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments