How can I check which version of NumPy I\'m using?
(FYI this question has been edited because both the question and answer are not platform specific.)
For Python 3.X print syntax:
python -c "import numpy; print (numpy.version.version)"
Or
python -c "import numpy; print(numpy.__version__)"