mirror of
https://github.com/autistic-symposium/master-algorithms-py.git
synced 2025-06-18 11:59:33 -04:00
gist
This commit is contained in:
parent
5107f16df0
commit
27fd177414
1 changed files with 9 additions and 0 deletions
9
src/further_examples/useful/version_info.py
Normal file
9
src/further_examples/useful/version_info.py
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
import sys
|
||||||
|
print "System version:",sys.version
|
||||||
|
import numpy as np
|
||||||
|
print "Numpy version:",np.version.version
|
||||||
|
import matplotlib
|
||||||
|
print "Matplotlib version:",matplotlib.__version__
|
||||||
|
import pandas as pd
|
||||||
|
print "Pandas version:",pd.__version__
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue