Skip to content

Commit

Permalink
Update how to import gdal
Browse files Browse the repository at this point in the history
  • Loading branch information
yumorishita committed Mar 23, 2021
1 parent 174768f commit f7eb22f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 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.1 20210319 Yu Morishita, GSI
v1.1.2 20210323 Yu Morishita, GSI
This script checks if LiCSBAS install is OK or not.
"""
#%% Change log
'''
v1.1.2 20210323 Yu Morishita, GSI
- Update how to import gdal
v1.1.1 20210319 Yu Morishita, GSI
- Add psutil
v1.1 20201124 Yu Morishita, GSI
Expand Down Expand Up @@ -59,7 +61,7 @@


try:
imported = import_module('gdal', 'osgeo')
imported = import_module('osgeo.gdal')
except Exception as err:
print(' ERROR: {}'.format(err))
flag = False
Expand Down

0 comments on commit f7eb22f

Please sign in to comment.