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
Search the PIP Package with:Copypip freeze | grep numpy
The grep Command refine the output List showing only the Entries matching the Keyword.
Or else try to Import the Module in Python CLI:Copypython
Copyimport numpy
Last, to Display the NumPy Version:
Copynumpy.version.version
Contents