How can I check which version of Numpy I'm using? I'm using Mac OS X 10.6.1 Snow Leopard.
Thank you for your help!
larus
2009-10-05 14:03:57
@keijo - You might want to consider changing your accepted answer to SilentGhost's.
Dominic Rodger
2009-10-05 14:05:09
This is the API we numpy developers will support. numpy.version.version is an implementation detail that should not be relied upon.
Robert Kern
2009-10-06 00:18:29
@Dominic Rodger: yeah, but your is more general to any module that cares to set a `__version__`.
voyager
2009-10-05 14:13:00
A:
from the command line, you can simply issue:
python -c "import numpy; print numpy.version.version"
or
python -c "import numpy; print numpy.__version__"
meduz
2009-12-24 12:10:38