Welcome to the BornAgain School 2018

check your python, numpy, matplotlib and BornAgain installations


In [1]:
#python version
import sys
print(sys.version)


3.7.0 (default, Aug 20 2018, 21:19:42) 
[Clang 9.1.0 (clang-902.0.39.2)]

In [2]:
#numpy version
import numpy as np
np.__version__


Out[2]:
'1.15.4'

In [3]:
#matplotlib version
import matplotlib as mpl
mpl.__version__


Out[3]:
'3.0.2'

In [5]:
#bonragain version
import bornagain as ba
ba.GetVersionNumber()


Out[5]:
'1.14.0'

In [ ]: