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.)
Pure Python line that can be executed from the terminal (both 2.X and 3.X versions):
python -c "import numpy; print(numpy.version.version)"
If you are already inside Python, then:
import numpy print(numpy.version.version)