Installing
-
2. Installing Anaconda Python
How to Install Anaconda Python in GNU/Linux
Here Python NumPy 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 numpy
-
3. Testing Python NumPy
So now just Test the Python NumPy
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 numpy
And then to Activate it:
Copyconda activate numpy
Now to Show the NumPy Info Notice:
Copypip show numpy
Or else try to Import the Module in Python CLI:
Copypython
Copyimport numpy
Contents