Installing
-
2. Installing Anaconda Python
How to Install Anaconda Python in GNU/Linux
Because Anaconda is the Best Choice for Data Science Computation!
In any case, instead to Install simply the System Python Package run:pip install numpy
-
3. Testing Python NumPy
So now just Test the Python NumPy
Search the PIP Package with:pip 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:python
import numpy
Last, to Display the NumPy Version:
numpy.version.version
Contents