Having trouble installing Seaborn how to check if the library is already installed? (On Mac)
in
The Complete Data Visualization Course with Python, R, Tableau, and Excel
/
What does the Course Cover
Having trouble installing Seaborn how to check if the library is already installed? (On Mac)
1 answers ( 0 marked as helpful)
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.