How do I check which version of NumPy I'm using?
import numpy
numpy.version.version
>> import numpy
>> print numpy.__version__
From the command line, you can simply issue:
python -c "import numpy; print(numpy.version.version)"
Or:
python -c "import numpy; print(numpy.__version__)"