forked from polaris-MCRT/POLARIS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install_polaris.sh
executable file
·440 lines (409 loc) · 14.2 KB
/
install_polaris.sh
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
#!/usr/bin/env bash
# Set Install directory
install_directory=$(pwd)
fits_support=false
polaris_tools=false
function command_exists() {
type "$1" &>/dev/null
}
function delete_build() {
for directories in "lib/cfitsio/build/" "lib/CCfits/build/" "src/build/"; do
rm -rv ${directories}
done
}
# ---------------------------------------------------------------------------------
# ------------------------- Routines for installations ----------------------------
# ---------------------------------------------------------------------------------
function initial_check() {
if ! command_exists cmake; then
echo -e "--- ${RED}Error:${NC} cmake not found. Please install cmake!"
exit
fi
if [ ! -d "src" ]; then
echo -e "--- ${RED}Error:${NC} src directory not found (incomplete polaris package?)"
exit
fi
}
function install_fits_support() {
# Check for necessary programms
if ! command_exists cmake; then
echo -e "--- ${RED}Error:${NC} cmake not found. Please install cmake!"
exit
fi
# Install Libraries
echo -e "${PC}--- Install required libraries for fits support ---${NC}"
if [ ! -d "lib" ]; then
echo -e "--- ${RED}Error:${NC} lib directory not found (incomplete polaris package?)"
exit
fi
cd "lib"
echo -e "Install cfitsio"
if [ ! -f "cfitsio/build/CMakeCache.txt" ] && [ -d "cfitsio/" ]; then
rm -r "cfitsio/"
fi
if [ ! -d "cfitsio" ]; then
tar -xf cfitsio.tar.gz
fi
cd "cfitsio"
echo -ne "- Configure cfitsio ... "\\r
if [ ! -d "build" ]; then
mkdir "build"
fi
cd "build"
cmake .. -DBUILD_SHARED_LIBS=$1 >/dev/null 2>&1 &&
echo -e "- Configure cfitsio [${GREEN}done${NC}]" ||
{
echo -e "- Configure cfitsio [${RED}Error${NC}]"
exit
}
echo -ne "- Compile cfitsio ... "\\r
make >/dev/null 2>&1 &&
echo -e "- Compile cfitsio [${GREEN}done${NC}]" ||
{
echo -e "- Compile cfitsio [${RED}Error${NC}]"
exit
}
cd ../..
echo -e "Install CCfits"
if [ ! -f "CCfits/build/CMakeCache.txt" ] && [ -d "CCfits/" ]; then
rm -r "CCfits/"
fi
if [ ! -d "CCfits" ]; then
tar -xf CCfits.tar.gz
fi
cd "CCfits"
echo -ne "- Configure CCfits ... "\\r
if [ ! -d "build" ]; then
mkdir "build"
fi
cd "build"
cmake .. -DBUILD_SHARED_LIBS=$1 -DCMAKE_PREFIX_PATH="${install_directory}/lib/cfitsio" >/dev/null 2>&1 &&
echo -e "- Configure CCfits [${GREEN}done${NC}]" ||
{
echo -e "- Configure CCfits [${RED}Error${NC}]"
exit
}
echo -ne "- Compile CCfits ... "\\r
make >/dev/null 2>&1 &&
echo -e "- Compile CCfits [${GREEN}done${NC}]" ||
{
echo -e "- Compile CCfits [${RED}Error${NC}]"
exit
}
cd ${install_directory}
export_str="export LD_LIBRARY_PATH=\"${install_directory}/lib/CCfits/build:${install_directory}/lib/cfitsio/build:"'${LD_LIBRARY_PATH}'"\""
if ! grep -q "${export_str}" ${HOME}/.bashrc; then
echo "${export_str}" >>${HOME}/.bashrc
echo -e "- Update bashrc [${GREEN}done${NC}]"
fi
source ~/.bashrc
}
function check_python_packages() {
echo -e "Search for required Python packages"
for package_name in numpy scipy matplotlib astropy os array struct argparse; do
if ! python -c "import ${package_name}" &>/dev/null; then
echo -e "- Required python package ${package_name} [${RED}not found${NC}]"
if command_exists conda && [ ${package_name} != "matplotlib2tikz" ]; then
echo "--- Conda installation detected. Install ${package_name}!"
conda install ${package_name}
if ! python -c "import ${package_name}" &>/dev/null; then
echo -e "- ${RED}Error:${NC} installation of python packages not succesfull!"
exit
else
echo -e "- Required python package ${package_name} [${GREEN}found${NC}]"
fi
elif command_exists pip; then
echo "--- Pip installation detected. Install ${package_name}!"
pip install ${package_name}
if ! python -c "import ${package_name}" &>/dev/null; then
echo -e "- ${RED}Error:${NC} installation of python packages not succesfull!"
exit
else
echo -e "- Required python package ${package_name} [${GREEN}found${NC}]"
fi
else
echo -e "--- ${RED}Error:${NC} Please install the required python packages via package manager!"
exit
fi
else
echo -e "- Required python package ${package_name} [${GREEN}found${NC}]"
fi
done
}
function install_anaconda() {
unameOut="$(uname -s)"
case "${unameOut}" in
Linux*)
MACHINE_TYPE=$(uname -m)
if [ "${MACHINE_TYPE}" == "x86_64" ]; then
if [ ! -f "Miniconda3-latest-Linux-x86_64.sh" ]; then
wget "https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh"
fi
chmod +x "Miniconda3-latest-Linux-x86_64.sh"
./Miniconda3-latest-Linux-x86_64.sh
rm "Miniconda3-latest-Linux-x86_64.sh"
else
if [ ! -f "Miniconda3-latest-Linux-x86.sh" ]; then
wget "https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86.sh"
fi
chmod +x "Miniconda3-latest-Linux-x86.sh"
./Miniconda3-latest-Linux-x86.sh
rm "Miniconda3-latest-Linux-x86.sh"
fi
;;
Darwin*)
if [ ! -f "Miniconda3-latest-MacOSX-x86_64.sh" ]; then
wget "https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh"
fi
chmod +x "Miniconda3-latest-MacOSX-x86_64.sh"
./Miniconda3-latest-MacOSX-x86_64.sh
rm "Miniconda3-latest-MacOSX-x86_64.sh"
;;
*)
echo "Machine not known!"
;;
esac
source ~/.bashrc
}
function install_polaris_tools() {
# Check for installation of python
echo -ne "Check for Python installation ...${NC}"\\r
python_version="$(python -V 2>&1)"
if [ "${python_version:7:1}" -lt 3 ] || [ "${python_version:9:1}" -lt 5 ]; then
echo -e "${RED}Error:${NC} No python >= 3.5 installation found!"
printf "%s\n" "Do you want to install anaconda python package? [Y/n] "
read install_anaconda_ans
case ${install_anaconda_ans:=y} in
[yY]*)
if ! command_exists wget; then
echo -e "--- ${RED}Error:${NC} Programm wget is not installed on this system!"
exit
fi
install_anaconda
echo -e "Check for Python installation [${GREEN}found${NC}]"
check_python_packages
;;
*)
server_support=false
;;
esac
python_installed=false
else
echo -e "Check for Python installation [${GREEN}found${NC}]"
python_installed=true
check_python_packages
fi
export_str="export PATH=\"${HOME}/.local/bin:"'$PATH'"\""
if grep -q "${export_str}" ${HOME}/.bashrc; then
true
else
echo -ne "Update bashrc ..."\\r
echo "${export_str}" >>${HOME}/.bashrc
echo -e "Update bashrc [${GREEN}done${NC}]"
fi
}
function install_polaris() {
# Check for necessary programms
initial_check
cd "src"
echo -e "${PC}--- Install POLARIS ---${NC}"
if [ ! -d "build" ]; then
mkdir "build"
fi
cd "build"
echo -ne "Configure POLARIS ... "\\r
cmake .. -DBUILD_SHARED_LIBS=$1 -DCMAKE_BUILD_TYPE=$2 -DCMAKE_CXX_FLAGS="-fopenmp" >/dev/null 2>&1 &&
echo -e "Configure POLARIS [${GREEN}done${NC}]" ||
{
echo -e "Configure POLARIS [${RED}Error${NC}]"
exit
}
echo -ne "Compile POLARIS ... "\\r
make >/dev/null 2>&1 &&
echo -e "Compile POLARIS [${GREEN}done${NC}]" ||
{
echo -e "Compile POLARIS [${RED}Error${NC}]"
exit
}
echo -ne "Install POLARIS ... "\\r
make install >/dev/null 2>&1 &&
echo -e "Install POLARIS [${GREEN}done${NC}]" ||
{
echo -e "Install POLARIS [${RED}Error${NC}]"
exit
}
cd ${install_directory}
export_str="export PATH=\"${install_directory}/bin:"'$PATH'"\""
if grep -q "${export_str}" ${HOME}/.bashrc; then
true
else
echo -ne "Update bashrc ..."\\r
echo "${export_str}" >>${HOME}/.bashrc
echo -e "Update bashrc [${GREEN}done${NC}]"
fi
}
# Define colors
RED="\033[0;31m"
GREEN="\033[0;32m"
PC="\033[0;35m"
TC="\033[0;36m"
NC="\033[0m"
function usage() {
echo "usage: install_polaris.sh [-u] [-h]"
echo ""
echo "Install of POLARIS on your system!"
echo ""
echo "optional arguments:"
echo "-h show this help message and exit"
echo "-r clean and compile POLARIS including PolarisTools if enabled (release mode)"
echo "-d clean and compile POLARIS including PolarisTools if enabled (debug mode)"
echo "-u compile POLARIS including PolarisTools if necessary (using release mode)"
echo "-c pre-compile POLARIS to be portable on other machines (using release mode)"
echo "-D delete POLARIS from your computer"
exit
}
while getopts "hrducD" opt; do
case $opt in
h)
usage
;;
r)
echo -e "${TC}------ clean and compile POLARIS (${GREEN}release mode!${TC}) ------${NC}"
cd ${install_directory}
delete_build &>/dev/null
install_fits_support "ON"
install_polaris "ON" "Release"
if [ -d "tools" ]; then
cd "tools"
if python -c "import polaris_tools_modules" &>/dev/null; then
echo -e "${TC}Update PolarisTools...${NC}"
python setup.py install --user &>/dev/null
fi
fi
exit
;;
d)
echo -e "${TC}------ clean and compile POLARIS (${RED}debug mode!${TC}) ------${NC}"
cd ${install_directory}
delete_build &>/dev/null
install_fits_support "ON"
install_polaris "ON" "Debug"
if [ -d "tools" ]; then
cd "tools"
if python -c "import polaris_tools_modules" &>/dev/null; then
echo -e "${TC}Update PolarisTools...${NC}"
python setup.py install --user &>/dev/null
fi
fi
exit
;;
u)
echo -e "${TC}------ compile POLARIS ------${NC}"
cd ${install_directory}
initial_check
cd "src"
if [ ! -d "build" ]; then
mkdir "build"
fi
cd "build"
cmake .. -DBUILD_SHARED_LIBS="ON" -DCMAKE_BUILD_TYPE="Release" -DCMAKE_CXX_FLAGS="-fopenmp"
make && make install
cd ${install_directory}
if [ -d "tools" ]; then
cd "tools"
if python -c "import polaris_tools_modules" &>/dev/null; then
echo -e "${TC}Update PolarisTools...${NC}"
python setup.py install --user &>/dev/null
fi
fi
exit
;;
c)
echo -e "${TC}------ create pre-compiled POLARIS ------${NC}"
cd ${install_directory}
delete_build &>/dev/null
install_fits_support "OFF"
install_polaris "OFF" "Release"
if [ -d "tools" ]; then
cd "tools"
if python -c "import polaris_tools_modules" &>/dev/null; then
echo -e "${TC}Update PolarisTools...${NC}"
python setup.py install --user &>/dev/null
fi
fi
exit
;;
D)
printf "%s\n" "Do you really want to delete your POLARIS installation [y/N]?"
read really_delete
case ${really_delete:=n} in
[yY]*)
echo -e "${TC}------ delete POLARIS ------${NC}"
export_str="export PATH=\"${install_directory}/bin:"'$PATH'"\""
if grep -q "${export_str}" ${HOME}/.bashrc; then
sed -i.bak "/${export_str//\//\\/}/d" ${HOME}/.bashrc
fi
export_str="export LD_LIBRARY_PATH=\"${install_directory}/lib/CCfits/build:${install_directory}/lib/cfitsio/build:"'${LD_LIBRARY_PATH}'"\""
if grep -q "${export_str}" ${HOME}/.bashrc; then
sed -i.bak "/${export_str//\//\\/}/d" ${HOME}/.bashrc
fi
cd ${install_directory}/../
rm -rv ${install_directory}
pip uninstall PolarisTools
exit
;;
*)
exit
;;
esac
;;
\?)
usage
;;
esac
done
# ---------------------------------------------------------------------------------
# -------------------------- Installation of POLARIS ------------------------------
# ---------------------------------------------------------------------------------
echo -e "${TC}------ Installer for the radiative transfer code POLARIS ------${NC}"
# Go to install directory
cd ${install_directory}
# Make shell scripts executable (should not be necessary)
chmod +x *.sh
if [ ! -d "projects" ]; then
mkdir "projects"
fi
# Ask for additional features
echo -e "${PC}--- Additional features ---${NC}"
printf "%s\n" "Do you want to enable PolarisTools [y/N]? (Python scripts collection)"
read install_tools
case ${install_tools:=n} in
[yY]*)
polaris_tools=true
;;
*)
polaris_tools=false
;;
esac
# Install Polaris
if ${install_directory}/bin/polaris >/dev/null 2>&1; then
echo -e "POLARIS binary found and can be executed (use -r to recompile) [${GREEN}done${NC}]"
else
install_fits_support "ON"
install_polaris "ON" "Release"
fi
# install PolarisTools
if [ "${polaris_tools}" == true ]; then
echo -e "${PC}--- Install PolarisTools ---${NC}"
install_polaris_tools
echo -ne "Set up PolarisTools ... "\\r
cd "tools/"
# Check symbolic link under ~/.local/lib and remove it if necessary
python setup.py install --user >/dev/null 2>&1 ||
{
echo -e "Set up PolarisTools [${RED}Error${NC}]"
exit
}
fi
echo -e "${TC}-> Installation of POLARIS ${NC}[${GREEN}done${NC}]"
source ~/.bashrc