Installing with Anaconda Python
-
2. Installing Conda
How to Install Conda in Red Hat GNU/Linux
Here Anaconda Python SetupLink to Guide on Installing Anaconda and Making a Virtual Env on GNU/Linux -
3. Using Matplotlib
Then to Use Matplotlib on Red Hat Linux
The Recommend way is of Creating a separate Virtual Environment to house the components.
With conda Package Manager like:Copyconda create -n matplotlib
And then to Activate it:
Copyconda activate matplotlib
Now to Show the Scipy Info Notice:
Copypip show matplotlib
Again you can try directly to Import the Module in Python CLI with:
Copypython
Copyimport matplotlib
Contents