Skip to content

Commit

Permalink
Add psutil
Browse files Browse the repository at this point in the history
  • Loading branch information
yumorishita committed Mar 19, 2021
1 parent ddbad56 commit 174768f
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions bin/LiCSBAS_check_install.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
#!/usr/bin/env python3
"""
v1.1 20201124 Yu Morishita, GSI
v1.1.1 20210319 Yu Morishita, GSI
This script checks if LiCSBAS install is OK or not.
"""
#%% Change log
'''
v1.1.1 20210319 Yu Morishita, GSI
- Add psutil
v1.1 20201124 Yu Morishita, GSI
- gdal must be >=2.4
v1.0 20201009 Yu Morishita, GSI
Expand All @@ -29,11 +31,12 @@
'h5py',
'matplotlib',
'numpy',
'psutil',
'requests',
'statsmodels',
]


print('\nPython version: {}'.format(platform.python_version()))
pyver = platform.python_version_tuple()
if int(pyver[0]) < 3 or int(pyver[1]) < 6:
Expand Down Expand Up @@ -81,7 +84,7 @@
else:
print(' OK')


print('\nCheck LiCSBAS library')
try:
imported = import_module('LiCSBAS_io_lib')
Expand All @@ -98,4 +101,4 @@
else:
print('\nERROR: LiCSBAS install is NOT OK\n')
sys.exit(1)

0 comments on commit 174768f

Please sign in to comment.