# Short script to verify that you have all the modules on your computer. # If one of them is missing, install it once via the command line with # > pip3 install module-name # import numpy as np import matplotlib as plt # MATLAB Plotting Library for Python import scipy # Needed for LOSC_Event_Tutorial.py import h5py # to read HDF5 5iles import readligo as rl # https://losc.ligo.org/s/sample_code/readligo.py# import playsound # For audio for tutorial_extras.py print ("If you can read this without errors then all modules are loaded.") ##EOF##