Seaborn Library is an open-source library which plays a very important role in data visualisation and data analysis. Seaborn Library is built on top of matplotlib and in integration with pandas data structure.
Installation of Seaborn Library
Step 1: Open Command Prompt.
Step 2: Check the version of Python and pip.
pip--version
python3--version
Note: You can also update pip by using the code given below if it is not of latest version to avoid errors.
pip install --upgrade pip
Step 3: Now enter the command to install the Seaborn library.
pip install seaborn
Step 4: Finally verify the installation by importing the library.
import Seaborn
Note: If there is any error than library has not been installed properly.