Installing
-
2. Installing Anaconda Python
How to Install Anaconda Python in GNU/Linux
Here Python Seaborn Setup GuideLink to Guide on Installing Anaconda Python and Making a Virtual EnvironmentBecause Anaconda is the Best Choice for Data Science Computation!
In any case, instead to Install simply the System Python Package run:Copypip install seaborn
-
3. Testing Python Seaborn
So now just Test the Python Seaborn
In case of Anaconda, the way is of Creating a separate Virtual Environment to house the components.
With conda Package Manager like:Copyconda create -n seaborn
And then to Activate it:
Copyconda activate seaborn
Now to Show the NumPy Info Notice:
Copypip show seaborn
Or else try to Import the Module in Python CLI:
Copypython
Copyimport seaborn
Contents