This repository has been archived by the owner on Apr 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
check_env.py
66 lines (58 loc) · 1.89 KB
/
check_env.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
#!/usr/bin/env python
"""
Check for required dependencies for the workshop.
Usage::
% python check_env.py
"""
from __future__ import print_function
import sys
from distutils.version import LooseVersion
def check_package(package_name, minimum_version=None, verbose=True):
errors = False
try:
pkg = __import__(package_name)
except ImportError as err:
print('Error: Failed import: {0}'.format(err))
errors = True
else:
if package_name == 'xlwt':
installed_version = pkg.__VERSION__
else:
installed_version = pkg.__version__
if (minimum_version is not None and
LooseVersion(installed_version) <
LooseVersion(str(minimum_version))):
print('Error: {0} version {1} or later is required, you '
'have version {2}'.format(package_name, minimum_version,
installed_version))
errors = True
if not errors and verbose:
print('Found', package_name, installed_version)
return errors
pkgs = {'IPython': '5.1',
'notebook': '4.2.3',
'numpy': '1.7',
'scipy': '0.15',
'matplotlib': '1.3',
'astropy': '1.2.1',
'photutils': '0.3',
'skimage': '0.12.3',
'pandas': '0.18.1',
'glue': '0.9.1',
'imexam': '0.6.2',
'astroquery': '0.3',
'ginga': '2.6.1',
'stginga':'0.1.3',
'gwcs': '0.7',
'specviz':'0.2'
}
if sys.platform.startswith('win'):
pkgs.pop('imexam')
errors = []
for package_name, min_version in pkgs.items():
errors.append(check_package(package_name, minimum_version=min_version))
if any(errors):
print('\nThere are errors that you must resolve before running the '
'tutorials.')
else:
print('\nYour Python environment is good to go!')