Last answered:

06 Dec 2021

Posted on:

06 Dec 2021

0

Having trouble installing Seaborn how to check if the library is already installed? (On Mac)

Having trouble installing Seaborn how to check if the library is already installed? (On Mac)

1 answers ( 0 marked as helpful)
Posted on:

06 Dec 2021

0

To check if a library is already installed you can do the following:
1. Open a new Jupyter Notebook
2. Write the following lines of code :

import seaborn as sns
sns.__version__

3. Run the cell
4. If all's well you should see the version of the library you're currently using.

Submit an answer