Installing
-
2. Installing Anaconda Python
How to Install Anaconda Python in GNU/Linux
Because this is the Best Practice to Work on a Python Multi Environment!
-
3. Testing Python SciPy
So now just Test the Python SciPy
In fact the Package it’s already part of the Anaconda Suite!
The Recommend way is of Creating a separate Virtual Environment to house the components.
With conda Package Manager like:conda create -n scipy
And then to Activate it:
conda activate scipy
Now to Show the Scipy Info Notice:
pip show scipy
Again you can try directly to Import the Module in Python CLI with:
python
import scipy
Contents