In this article, we are going to learn how to install Seaborn On Window With Pip Python with a specific version, the latest version and after installation, we will verify the successful installation by using some command.
Pre-requisites to Install Seaborn
To install Seaborn we are going to use the pip command so you will need to make sure you have pip installed on your machine. Depending on the version of Python, that you have installed on your machine, you must have pip or pip3 (for Python3) installed to run the Seaborn installation command.
How to install Seaborn on windows using pip
On Windows operating system, installing Seaborn is very easy and you can do that by using the below steps:
- Open a command terminal with administrator privileges.
- Type the command as given below and press enters to start the installation.
pip install seaborn
For Python3, you can use pip3 also as given below: This will install the latest version on seaborn on the machine
pip3 install seaborn
.
If you have a specific version requirement then you can install that version by specifying the version. For this, you must know which version of seaborn you want to install. The pip command to install a specific version of seaborn is:
pip install seaborn==0.9.0
For Python3, you can use pip3 also as given below:
pip3 install seaborn==0.9.0