-
Notifications
You must be signed in to change notification settings - Fork 12
/
install_shapepipe
executable file
·777 lines (704 loc) · 18.5 KB
/
install_shapepipe
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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
#!/usr/bin/env bash
export LC_ALL=en_US.UTF-8
export LC_CTYPE=en_US.utf8
##############################################################################
# Install ShapePipe Executables
#
# This script can only be run after the ShapePipe environment has been
# installed.
#
##############################################################################
version="1.8"
last_update="13/10/24"
##############################################################################
# EXTERNAL PACKAGES AND SCRIPTS
##############################################################################
# External packages
# Conda package versions
fftw_ver="3.3.10"
libpng_ver="1.6.37"
mpi4py_ver="4.0.1"
openblas_ver="0.3.18"
# Source Extractor
se_bin="sex"
# PSFEx Package
psfex_url="https://github.com/astromatic/psfex/archive/3.24.1.tar.gz"
psfex_tar="3.24.1.tar.gz"
psfex_dir="psfex-3.24.1"
psfex_bin="psfex"
psfex_version=TRUE
# WeightWatcher Package
ww_url="https://github.com/astromatic/weightwatcher/archive/refs/tags/1.12.tar.gz"
ww_tar="1.12.tar.gz"
ww_dir="weightwatcher-1.12"
ww_bin="ww"
ww_version=TRUE
# CDSclient Package (need Findgsc2.2)
cdsclient_url="http://cdsarc.u-strasbg.fr/ftp/pub/sw/cdsclient.tar.gz"
cdscleint_tar="cdsclient.tar.gz"
cdsclient_dir="cdsclient-4.07"
cdsclient_bin="findgsc2.2"
cdsclient_version=FALSE
# mpi4py Package
mpi_url="https://github.com/mpi4py/mpi4py/archive/${mpi4py_ver}.tar.gz"
mpi_tar="${mpi4py_ver}.tar.gz"
mpi_dir="mpi4py-${mpi4py_ver}"
mpi_bin="mpiexec"
mpi_version=TRUE
# Divider line
line="########################################################################"
# Text colours
RED='\033[0;31m'
GREEN='\033[0;32m'
CYAN='\033[0;36m'
YELLOW='\033[1;33m'
NC='\033[0m'
# Set variable defaults
PIPE_DIR=$PWD
BUILD_DIR=$PIPE_DIR/build
ENV_NAME='shapepipe'
ENV_DEV=FALSE
USE_CONDA_SOURCE=FALSE
BUILD_ENV=TRUE
DEVELOP=FALSE
VOS=FALSE
INSTALL_PSFEX=TRUE
INSTALL_WW=TRUE
INSTALL_CDSCLIENT=TRUE
ATLAS_SEARCH=FALSE
use_atlas=FALSE
USE_MPI=TRUE
ERROR=FALSE
##############################################################################
# SCRIPT FUNCTIONS
##############################################################################
# Function to download, and unzip and untar a package
download_package() {
cd $BUILD_DIR
wget --no-check-certificate $1
tar -xzf $2
rm $2
}
# Function to build PSFEx with OpenBLAS
build_psfex_blas() {
astromatic_setup
cd $BUILD_DIR/$1
./autogen.sh
./configure --prefix=$CONDA_PREFIX --enable-openblas --enable-plplot=no \
--with-fftw-libdir=$FFTW_LIB --with-fftw-incdir=$FFTW_INC \
--with-openblas-libdir=$BLAS_LIB --with-openblas-incdir=$BLAS_INC --quiet
make -j --quiet
make install
}
# Function to build PSFEx with ATLAS
build_psfex_atlas() {
astromatic_setup
cd $BUILD_DIR/$1
./autogen.sh
if [ "$ATLAS_SEARCH" == TRUE ]
then
./configure --prefix=$CONDA_PREFIX --enable-plplot=no \
--with-fftw-libdir=$FFTW_LIB --with-fftw-incdir=$FFTW_INC --quiet
else
./configure --prefix=$CONDA_PREFIX --enable-plplot=no \
--with-fftw-libdir=$FFTW_LIB --with-fftw-incdir=$FFTW_INC \
--with-atlas-libdir=$ATLAS_LIB --with-atlas-incdir=$ATLAS_INC --quiet
fi
make -j --quiet
make install
}
# Function to build a standard package
build_standard() {
cd $BUILD_DIR/$1
./configure --prefix=$CONDA_PREFIX --quiet
make --quiet
make install
}
# Function to build mpi4pi using preinstalled MPI libraries
build_mpi(){
cd $BUILD_DIR/$1
python setup.py build --mpicc=$MPI_ROOT
python setup.py install
ln -s $MPI_ROOT/bin/$mpi_bin $CONDA_PREFIX/bin/$mpi_bin
}
# Check the conda executable is available
check_conda() {
if ! type -t "conda" > /dev/null
then
echo -ne "${RED}ERROR: Conda command not found, make sure it is installed before proceding.${NC}\n"
exit 1
fi
# Set Conda variables
CONDA_VERSION=$(conda -V | perl -pe '($_)=/([0-9]+([.][0-9]+)+)/' )
CONDA_VERSION_MAJOR=$(cut -d'.' -f1 <<<$CONDA_VERSION)
CONDA_VERSION_MINOR=$(cut -d'.' -f2 <<<$CONDA_VERSION)
CONDA_VERSION_PATCH=$(cut -d'.' -f3 <<<$CONDA_VERSION)
CONDA_SH=/etc/profile.d/conda.sh
# Check Conda major version
if [ "$CONDA_VERSION_MAJOR" -lt 4 ]
then
echo -ne "${RED}ERROR: Found Conda version $CONDA_VERSION but require 4.0.0 or greater.${NC}\n"
exit 1
fi
# Look for conda.sh file
if [ -f "$CONDA_PREFIX_1$CONDA_SH" ]
then
source "$CONDA_PREFIX_1$CONDA_SH"
elif [ -f "$CONDA_PREFIX$CONDA_SH" ]
then
source "$CONDA_PREFIX$CONDA_SH"
else
echo -ne "${RED}ERROR: Could not find $CONDA_SH in \$CONDA_PREFIX.${NC}\n"
echo -ne "${RED}Activate the base/root Conda environment and try again.${NC}\n"
exit 1
fi
# Set environment activation command
if [ "$USE_CONDA_SOURCE" == TRUE ]
then
CONDA_ACTIVATE="source activate"
CONDA_DEACTIVATE="source deactivate"
else
CONDA_ACTIVATE="conda activate"
CONDA_DEACTIVATE="conda deactivate"
fi
}
# Check if a binary executable is already installed in the conda environment
check_binary() {
if ! type -t "$CONDA_PREFIX/bin/$1" > /dev/null
then
return 0
else
echo "Executable '$1' is already installed, skipping."
echo ""
return 1
fi
}
# Check if a binary executable is already installed in the conda environment
check_binary2() {
if type -t "$CONDA_PREFIX/bin/$1" > /dev/null
then
echo -ne "$2: ${GREEN}INSTALLED${NC}\n"
if [ "$3" == TRUE ]
then
"$CONDA_PREFIX/bin/$1" --version | head -n 2
fi
else
if [ "$4" == TRUE ]
then
echo -ne "$2: ${RED}INSTALLATION FAILED${NC}\n"
ERROR=TRUE
else
echo -ne "$2: ${YELLOW}NOT INSTALLED${NC}\n"
fi
fi
echo ""
}
# Check the environment name
check_env_name() {
if [ "$ENV_DEV" == TRUE ]
then
ENV_NAME='shapepipe-dev'
fi
}
# Check if a python site-package is installed correctly in the conda environment
check_site_pkg() {
if compgen -G "$CONDA_PREFIX/lib/python3.*/site-packages/$1*" > /dev/null
then
echo -ne " - $1:\t \xe2\x9c\x85\n"
else
echo -ne " - $1:\t \xe2\x9d\x8c\n"
fi
}
# Function to report progress
report_progress() {
echo ''
echo $line
echo -e "${CYAN}Installing $1${NC}"
echo $line
echo ''
}
# Function to start the script
start() {
echo ''
echo $line
echo 'ShapePipe Installation Script'
echo ''
echo 'Authors: Samuel Farrens and Martin Kilbinger'
echo 'Version:' $version
echo 'Last Update:' $last_update
echo $line
echo ''
}
# Function to report package versions
packages() {
check_binary2 $se_bin "Source Extractor" TRUE TRUE
check_binary2 $psfex_bin "PSFEx" $psfex_version $INSTALL_PSFEX
check_binary2 $ww_bin "WeightWatcher" $ww_version $INSTALL_WW
check_binary2 $cdsclient_bin "CDSclient" $cdsclient_version $INSTALL_CDSCLIENT
check_binary2 $mpi_bin "MPI" $mpi_version $USE_MPI $MPI_ROOT
check_binary2 "shapepipe_run" "ShapePipe_Run" TRUE TRUE
}
site-packages() {
check_site_pkg "shapepipe"
check_site_pkg "astropy"
check_site_pkg "galsim"
check_site_pkg "joblib"
check_site_pkg "mccd"
check_site_pkg "ngmix"
check_site_pkg "numpy"
check_site_pkg "pandas"
check_site_pkg "pysap"
check_site_pkg "scipy"
check_site_pkg "sf_tools"
check_site_pkg "sip_tpv"
check_site_pkg "sqlitedict"
check_site_pkg "treecorr"
}
# Function to return exit code
exit_code() {
if [ "$ERROR" == TRUE ]
then
echo "ShapePipe installation failed as some packages were not properly installed."
exit 1
else
exit 0
fi
}
# Function to report package versions
package_report() {
check_env_name
if [ "$CONDA_DEFAULT_ENV" != "$ENV_NAME" ]
then
check_conda
activate_shapepipe
fi
INSTALL_PSFEX=FALSE
INSTALL_WW=FALSE
INSTALL_CDSCLIENT=FALSE
USE_MPI=FALSE
start
echo 'Package Report'
echo ''
packages
echo 'Python Package Check List:'
echo ''
site-packages
echo ''
exit_code
}
# Function to end the script
finish() {
echo $line
echo ''
echo $line
echo 'Installation Complete!'
echo ''
packages
echo 'Python Package Check List:'
echo ''
site-packages
echo ''
echo $line
echo ''
exit_code
}
check_status () {
if [ "$2" == FALSE ]
then
echo -ne "$1 ${YELLOW}$2${NC}"
elif [ "$2" == TRUE ]
then
echo -ne "$1 ${GREEN}$2${NC}"
else
echo -ne "$1 ${CYAN}$2${NC}"
fi
echo -ne " ${CYAN}$3${NC}\n"
}
# Function to show the installation setup
setup() {
check_status 'Operating System:' $SYSOS
check_status 'Conda Version:' $CONDA_VERSION
check_status 'Build Conda Environment:' $BUILD_ENV $ENV_NAME
check_status 'Install PSFEx:' $INSTALL_PSFEX
check_status 'Install WeightWatcher:' $INSTALL_WW
check_status 'Install CDSclient:' $INSTALL_CDSCLIENT
check_status 'Use MPI:' $USE_MPI $MPI_ROOT
check_status 'ShapePipe Directory:' $PIPE_DIR
check_status 'Build Directory:' $BUILD_DIR
echo ''
}
# Function to show the astromatic setup
astromatic_setup() {
export LDFLAGS="-lpthread"
echo 'LDFLAGS:' $LDFLAGS
echo 'FFTW Library Path:' $FFTW_LIB
echo 'FFTW Include Path:' $FFTW_INC
if [ "$use_atlas" == TRUE ]
then
echo 'ATLAS Library Path:' $ATLAS_LIB
echo 'ATLAS Include Path:' $ATLAS_INC
else
echo 'OpenBLAS Library Path:' $BLAS_LIB
echo 'OpenBLAS Include Path:' $BLAS_INC
fi
echo ''
}
# Function to uninstall ShapePipe and dependencies
uninstall() {
check_env_name
read -p "Uninstall $ENV_NAME environment [y/N]: " response
response=${response:-n}
if [ $response == "y" ]
then
rm -r build dist src/*.egg-info .eggs
deactivate_shapepipe
conda remove -n $ENV_NAME --all -y
echo "Finished uninstalling $ENV_NAME"
fi
}
# Function to activate ShapePipe environment
activate_shapepipe() {
# Run activation command
echo -ne "Running ${CYAN}$CONDA_ACTIVATE $ENV_NAME${NC}\n"
eval "$CONDA_ACTIVATE $ENV_NAME"
# Check if the activation was successful
if [ "$?" -eq 0 ]
then
echo -ne "Successfully activated ShapePipe environment ${CYAN}$CONDA_PREFIX${NC}\n"
export LD_RUN_PATH=$CONDA_PREFIX/lib
else
echo -ne "${RED}ERROR: Could not activate ShapePipe environment.${NC}\n"
exit 1
fi
}
# Function to deactivate ShapePipe environment
deactivate_shapepipe() {
# Run deactivation command
eval $CONDA_DEACTIVATE
}
build_symlinks() {
echo "Creating symbolic links for scripts"
script_dirs=("scripts/python" "scripts/sh")
for dir in "${script_dirs[@]}"; do
for script in "$dir"/*; do
if [[ "$script" == *".sh" ]]; then
base_name=$(basename "$script" ".sh")
elif [[ "$script" == *".bash" ]]; then
base_name=$(basename "$script" ".bash")
elif [[ "$script" == *".py" ]]; then
base_name=$(basename "$script" ".py")
else
echo -ne "$2: ${YELLOW}WARNING:${NC}\n"
echo "Unknown script extension for $script."
continue
fi
# Create symbolic link inside $CONDA_PREFIX/bin without extension
ln -sf "$(pwd)/$script" "$CONDA_PREFIX/bin/$base_name"
# Make the symbolic link executable
chmod +x "$CONDA_PREFIX/bin/$base_name"
done
done
}
##############################################################################
# SCRIPT OPTIONS
##############################################################################
help="$(basename "$0") [OPTIONS]\n\n
Options:\n
\t-h,--help\t show this help message and exit\n
\t-v,--version\t print script version and exit\n
\t-p,--packages\t print status of installed packages\n
\t--uninstall\t uninstall ShapePipe\n
\t--pipe-dir\t set the path to the ShapePipe base directory (default is \$PWD)\n
\t--build-dir\t set the path to the ShapePipe build (default is \$PWD/build)\n
\t--env-name\t set the name of the Conda environment (default is shapepipe)\n
\t--env-dev\t use the developer's Conda environment instead of the standard production environment\n
\t--use-conda-source\t use 'conda source' instead of the default 'conda activate' to activate the shapepipe environment\n
\t--develop\t option to install additional development packages (included by default in --env-dev)\n
\t--vos\t\t option to install virtual observatory software\n
\t--no-env\t do not build Conda environment\n
\t--no-psfex\t do not build PSFEx\n
\t--no-ww\t\t do not build WeightWatcher\n
\t--no-cds\t do not build CDSclient\n
\t--no-exe\t do not build any system executables\n\n
Executable Build Options:\n
\t--fftw-lib\t path to FFTW library directory\n
\t--fftw-inc\t path to FFTW include directory\n
\t--blas-lib\t path to OpenBLAS library directory\n
\t--blas-inc\t path to OpenBLAS include directory\n
\t--atlas-lib\t path to ATLAS library directory\n
\t--atlas-inc\t path to ATLAS include directory\n
\t--atlas-search\t search system path for ATLAS directories\n\n
MPI Build Options:\n
\t--no-mpi\t do not use MPI\n
\t--mpi-root\t path to MPI installation\n\n
"
# Parse command line options
for i in "$@"
do
case $i in
-h|--help)
start
echo -ne $help
shift
exit
;;
-v|--version)
echo $(basename "$0") $version
shift
exit
;;
-p|--packages)
package_report
shift
exit
;;
--uninstall)
uninstall
shift
exit
;;
--pipe-dir=*)
PIPE_DIR="${i#*=}"
shift
;;
--build-dir=*)
BUILD_DIR="${i#*=}"
shift
;;
--env-name=*)
ENV_NAME="${i#*=}"
shift
;;
--env-dev)
ENV_DEV=TRUE
shift
;;
--use-conda-source)
USE_CONDA_SOURCE=TRUE
shift
;;
--develop)
DEVELOP=TRUE
shift
;;
--vos)
VOS=TRUE
shift
;;
--no-env)
BUILD_ENV=FALSE
shift
;;
--no-psfex)
INSTALL_PSFEX=FALSE
shift
;;
--no-ww)
INSTALL_WW=FALSE
shift
;;
--no-cds)
INSTALL_CDSCLIENT=FALSE
shift
;;
--fftw-lib=*)
FFTW_LIB="${i#*=}"
shift
;;
--fftw-inc=*)
FFTW_INC="${i#*=}"
shift
;;
--blas-lib=*)
BLAS_LIB="${i#*=}"
shift
;;
--blas-inc=*)
BLAS_INC="${i#*=}"
shift
;;
--atlas-lib=*)
ATLAS_LIB="${i#*=}"
shift
;;
--atlas-inc=*)
ATLAS_INC="${i#*=}"
shift
;;
--atlas-search)
ATLAS_SEARCH=TRUE
shift
;;
--no-mpi)
USE_MPI=FALSE
shift
;;
--mpi-root=*)
MPI_ROOT="${i#*=}"
shift
;;
--no-exe)
INSTALL_PSFEX=FALSE
INSTALL_WW=FALSE
INSTALL_CDSCLIENT=FALSE
shift
;;
*)
echo "Invalid option, see help!"
exit 1
;;
esac
done
##############################################################################
# CREATE CONDA ENVIRONMENT
##############################################################################
# Start script
start
# Check if conda is installed
check_conda
# Check the Conda environment name
check_env_name
# Find the operating system
case "$OSTYPE" in
darwin*)
SYSOS="macOS"
;;
linux*)
SYSOS="LINUX"
;;
*)
echo "unknown: $OSTYPE"
exit 1
;;
esac
if [ ! -z "$ATLAS_LIB" ] || [ "$ATLAS_SEARCH" == TRUE ]
then
use_atlas=TRUE
fi
# Create build directory if it does not already exist
if [ ! -d "$BUILD_DIR" ]
then
mkdir $BUILD_DIR
fi
# Print script set-up
setup
# Build conda environment
if [ "$BUILD_ENV" == TRUE ]
then
report_progress 'ShapePipe Environment'
if [ "$ENV_DEV" == TRUE ]
then
conda env create -f environment-dev.yml -n $ENV_NAME
else
conda env create -f environment.yml -n $ENV_NAME
fi
fi
# Activate conda environment
activate_shapepipe
if [ -z "$FFTW_LIB" ]; then FFTW_LIB=$CONDA_PREFIX/lib; fi
if [ -z "$FFTW_INC" ]; then FFTW_INC=$CONDA_PREFIX/include; fi
if [ -z "$BLAS_LIB" ]; then BLAS_LIB=$CONDA_PREFIX/lib; fi
if [ -z "$BLAS_INC" ]; then BLAS_INC=$CONDA_PREFIX/include; fi
##############################################################################
# INSTALL THE VOS LIBRARY
##############################################################################
# Install the vos library
if [ "$VOS" == TRUE ]
then
report_progress 'vos'
python -m pip install vos
fi
##############################################################################
# INSTALL MACOS REQUIRMENTS
##############################################################################
# Set up macOS environment
if [ "$SYSOS" == "macOS" ]
then
report_progress 'macOS Requirements'
echo "Setting C compiler flags"
export C_INCLUDE_PATH=$CONDA_PREFIX/include
export CFLAGS="-Wl,-rpath,$CONDA_PREFIX/lib"
export CPPFLAGS="-Wno-everything"
else
export CPPFLAGS="-w"
fi
##############################################################################
# INSTALL MPI REQUIRMENTS
##############################################################################
# Install mpi4py
if [ "$USE_MPI" == TRUE ]
then
report_progress 'MPI'
if [ -z "$MPI_ROOT" ]
then
if [ "$ENV_DEV" == TRUE ]
then
conda install -n $ENV_NAME -c conda-forge "mpi4py" -y
else
conda install -n $ENV_NAME -c conda-forge "mpi4py==${mpi4py_ver}" -y
fi
else
download_package $mpi_url $mpi_tar
build_mpi $mpi_dir
fi
fi
##############################################################################
# BUILD EXTERNAL EXECUTABLES
##############################################################################
# Build PSFEx
if [ "$INSTALL_PSFEX" == TRUE ] && check_binary $psfex_bin
then
report_progress 'PSFEx'
if [ "$ENV_DEV" == TRUE ]
then
conda install -n $ENV_NAME -c conda-forge libpng fftw -y
else
conda install -n $ENV_NAME -c conda-forge "libpng==${libpng_ver}" "fftw==${fftw_ver}" -y
fi
download_package $psfex_url $psfex_tar
if [ "$use_atlas" == TRUE ]
then
build_psfex_atlas $psfex_dir
else
if [ "$ENV_DEV" == TRUE ]
then
conda install -n $ENV_NAME -c conda-forge "openblas" -y
else
conda install -n $ENV_NAME -c conda-forge "openblas==${openblas_ver}" -y
fi
build_psfex_blas $psfex_dir
fi
fi
# Build WeightWatcher
if [ "$INSTALL_WW" == TRUE ] && check_binary $ww_bin
then
report_progress 'WeightWatcher'
download_package $ww_url $ww_tar
export CXXFLAGS="-fcommon"
build_standard $ww_dir
fi
# Build CDSclient
if [ "$INSTALL_CDSCLIENT" == TRUE ] && check_binary $cdsclient_bin
then
report_progress 'CDSclient'
download_package $cdsclient_url $cdscleint_tar
build_standard $cdsclient_dir
fi
##############################################################################
# INSTALL SHAPEPIPE LIBRARY
##############################################################################
# Install ShapePipe package
report_progress 'ShapePipe'
cd $PIPE_DIR
if [ "$DEVELOP" == "TRUE" ] || [ "$ENV_DEV" == "TRUE" ]
then
echo "Installing ShapePipe package with developer tools"
python -m pip install ".[dev]"
else
echo "Installing ShapePipe package"
python -m pip install .
fi
# Create symbolic links to scripts
build_symlinks
finish
##############################################################################