How can I check the version of scipy
installed on my system?
Asked
Active
Viewed 1.7e+01k times
102

snake_charmer
- 2,845
- 4
- 26
- 39

OD IUM
- 1,555
- 2
- 16
- 26
-
5import scipy; print scipy.version.version – YXD Jan 27 '14 at 15:47
5 Answers
124
In [95]: import scipy
In [96]: scipy.__version__
Out[96]: '0.12.0'
In [104]: scipy.version.*version?
scipy.version.full_version
scipy.version.short_version
scipy.version.version
In [105]: scipy.version.full_version
Out[105]: '0.12.0'
In [106]: scipy.version.git_revision
Out[106]: 'cdd6b32233bbecc3e8cbc82531905b74f3ea66eb'
In [107]: scipy.version.release
Out[107]: True
In [108]: scipy.version.short_version
Out[108]: '0.12.0'
In [109]: scipy.version.version
Out[109]: '0.12.0'
See SciPy doveloper documentation for reference.

Mihai Capotă
- 2,271
- 2
- 32
- 24

zhangxaochen
- 32,744
- 15
- 77
- 108
3
From the python command prompt:
import scipy
print scipy.__version__
In python 3 you'll need to change it to:
print (scipy.__version__)

Dinusha Thilakarathna
- 422
- 6
- 13
0
Use pip list
This will give you a list of all installed Python modules with version number.
Use pip list | grep scipy
to filter out all unnecessary information about other packages.

Amuoeba
- 624
- 9
- 28