forked from jorisvandenbossche/DS-python-geospatial
-
Notifications
You must be signed in to change notification settings - Fork 1
/
check_environment.py
67 lines (57 loc) · 2.05 KB
/
check_environment.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# This script is adapted from Andreas Mueller:
# https://github.com/amueller/scipy-2018-sklearn/blob/master/check_env.ipynb
# and glemaitre: https://github.com/glemaitre/pyparis-2018-sklearn/blob/master/check_environment.py
from __future__ import print_function
from distutils.version import LooseVersion as Version
import sys
try:
import curses
curses.setupterm()
assert curses.tigetnum("colors") > 2
OK = "\x1b[1;%dm[ OK ]\x1b[0m" % (30 + curses.COLOR_GREEN)
FAIL = "\x1b[1;%dm[FAIL]\x1b[0m" % (30 + curses.COLOR_RED)
except:
OK = '[ OK ]'
FAIL = '[FAIL]'
try:
import importlib
except ImportError:
print(FAIL, "Python version 3.4 is required,"
" but %s is installed." % sys.version)
def import_version(pkg, min_ver, fail_msg=""):
mod = None
try:
mod = importlib.import_module(pkg)
if pkg in {'PIL'}:
ver = mod.VERSION
elif pkg in {'xlrd'}:
ver = mod.__VERSION__
else:
ver = mod.__version__
if Version(ver) < min_ver:
print(FAIL, "%s version %s or higher required, but %s installed."
% (lib, min_ver, ver))
else:
print(OK, '%s version %s' % (pkg, ver))
except ImportError:
print(FAIL, '%s not installed. %s' % (pkg, fail_msg))
return mod
# first check the python version
print('Using python in', sys.prefix)
print(sys.version)
pyversion = Version(sys.version)
if pyversion >= "3":
if pyversion < "3.6":
print(FAIL, "Python version 3.6 is required,"
" but %s is installed." % sys.version)
else:
print(FAIL, "Python 3 is required, but %s is installed." % sys.version)
print()
requirements = {'numpy': "1.9", 'matplotlib': "2.0",
'pandas': "1.1", 'xarray': '0.16',
'geopandas': '0.8', 'rasterio': '1.1',
'owslib': '0.19', 'fsspec': '0.8',
's3fs': '0.3', 'pyproj': '2.4'}
# now the dependencies
for lib, required_version in list(requirements.items()):
import_version(lib, required_version)