Skip to content

Instantly share code, notes, and snippets.

@yukunlin
Last active August 29, 2015 14:16
Show Gist options
  • Save yukunlin/a145bc29a1984472167d to your computer and use it in GitHub Desktop.
Save yukunlin/a145bc29a1984472167d to your computer and use it in GitHub Desktop.
Check version of dependencies
import numpy
import scipy
import matplotlib
import platform
import sklearn
import sys
print 'python:', sys.version
print 'numpy:', numpy.__version__
print 'scipy:', scipy.version.full_version
print 'matplotlib:', matplotlib.__version__
print 'sklearn:', sklearn.__version__
print 'os:', platform.platform()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment