+2 votes
in Programming Languages by (73.8k points)
How can I check the version of Scipy and Numpy installed on my Ubuntu machine?

1 Answer

+1 vote
by (348k points)
selected by
 
Best answer

Try the followings on Python terminal to check the version of Numpy and Scipy.

>>> import numpy
>>> numpy.version.version
'1.16.2'
>>> import scipy
>>> scipy.version.version
'1.2.1'


...