forked from rzellem/EXOTIC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_exotic_mac.command
executable file
·140 lines (136 loc) · 4.64 KB
/
run_exotic_mac.command
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
#!/usr/bin/env bash
py_commands="python3 python"
pip_commands="pip3 pip"
ver_py_min="3.8"
ver_py_max="4.0"
py_download="https://www.python.org/downloads/"
pip_download="https://bootstrap.pypa.io/get-pip.py"
exotic_url="https://github.com/rzellem/EXOTIC"
test_url="https://exoplanetarchive.ipac.caltech.edu/TAP/sync"
#test_url="https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select%201%20from%20DUAL"
cert_instructions="https://news.ycombinator.com/item?id=13626273"
pip_instructions="https://pip.pypa.io/en/stable/installing/"
py_instructions_linux="https://www.cyberciti.biz/faq/install-python-linux/"
py_runner=""
pip_runner=""
test_result=""
if echo "${0##*/}" | grep -q '_linux';
then
py_download=${py_instructions_linux}
fi
# test version compatibility within predefined range
version_within_range () {
local test_str="${1}\n${2}\n${3}"
test_str=$(sort -V <(echo -e "${test_str}"))
if [ "$(head -1 <(echo -e "${test_str}"))" == "${1}" ] &&
[ "$(tail -1 <(echo -e "${test_str}"))" == "${3}" ];
then
return 0
fi
return 1
}
# test for python installation and version compatibility
for app in ${py_commands} ; do
py_version=$(${app} --version 2>&1)
if [ ${?} -eq 0 ]; # success
then
ver=$(echo -n "${py_version}" | sed 's/.*[Pp]ython \([0-9.]*\).*/\1/;' | head -1)
version_within_range "${ver_py_min}" "${ver}" "${ver_py_max}"
if [ $? -eq 0 ]
then
py_runner="${app}"
echo "INFO: Using '${app} ${ver}'. SUCCESS!"
break
else
echo "WARNING: Incompatible Python (${app}) found. ..."
fi
fi
done
# exit if valid python not found
if [[ -z "${py_runner}" ]];
then
echo "ERROR: Incompatible or missing Python runtime. Please install"
echo " Python ${ver_py_min} or above. EXITING!"
echo "For more information, see ${py_download}. ..."
echo
exit 65
fi
# test for pip
for app in ${pip_commands} ; do
pip_version=$(${app} --version 2>&1)
if [ ${?} -eq 0 ]; # success
then
ver=$(echo -n "${pip_version}" | sed 's/.*[Pp]ython \([0-9.]*\).*/\1/;' | head -1)
ver_min=$(echo -n "${ver_py_min}" | sed 's/^\([0-9]*\.[0-9]*\).*/\1/;' | head -1)
version_within_range "${ver_min}" "${ver}" "${ver_py_max}"
if [ $? -eq 0 ];
then
pip_runner="${app}"
echo "INFO: Using '${app} ${ver}'. SUCCESS!"
break
else
echo "WARNING: Incompatible Pip (${app}) found. ..."
fi
fi
done
# attempt install then exit on failure
if [[ -z "${pip_runner}" ]];
then
echo "INFO: Installing 'Pip Installs Packages' (pip) for Python ${ver_py_min%%.*}. ..."
echo " DOWNLOADING ..."
# install pip3
if curl &>/dev/null ;
then
curl -O "${pip_download}"
elif wget &>/dev/null ;
then
wget "${pip_download}"
else
echo "ERROR: Unable to download package manager. Please install"
echo " Pip for Python ${ver_py_min%%.*}. EXITING!"
echo "For more information, see ${pip_instructions}. ..."
echo
exit 65
fi
${py_runner} get-pip.py
pip_runner="pip3"
# validate installation
if ! ${pip_runner} --version ;
then
echo "ERROR: Incompatible or missing package manager. Please install"
echo " Pip for Python ${ver_py_min%%.*}. EXITING!"
echo "For more information, see ${pip_instructions}. ..."
echo
exit 65
fi
fi
echo "INFO: Validating certificate store. ..."
test_result=$(${py_runner} -u -c "import urllib.request; urllib.request.urlopen('${test_url}')" 2>&1)
if grep -q 'CERTIFICATE_VERIFY_FAILED' <<< "${test_result}" ;
then
echo "ERROR: Incompatible or missing network security certificates. Please install"
echo " and configure the 'certifi' module from PyPi. EXITING!"
echo " Exa.: Applications > Python ${ver_py_min%%.*}.x > Install Certificates.command"
echo "For more information, see ${cert_instructions}. ..."
echo
exit 65
fi
# exec commands using determinate pip
echo "INFO: Installing EXOTIC build dependencies. ..."
${pip_runner} install setuptools
${pip_runner} install wheel
echo "INFO: Installing EXOTIC core. ..."
${pip_runner} install --upgrade exotic
echo "INFO: Launching EXOTIC user interface. ..."
if ${pip_runner} freeze | grep -iq 'exotic' ;
then
zsh -c "exotic-gui"
else
echo "ERROR: Unable to launch EXOTIC, installation failed. Please verify installation"
echo " steps reported on screen or open a support ticket at: "
echo " ${exotic_url}/issues/new/choose ."
echo " EXITING!"
exit 65
fi
echo "COMPLETE, EXITING!"
exit 0