forked from usgs/shakemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·211 lines (178 loc) · 6.36 KB
/
install.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
#!/usr/bin/env bash
# constants
# DEFAULT_PYVER=3.12
usage()
{
# echo "Usage: install.sh [ -p Python version (3.12) ]
echo "Usage: install.sh
[ -d Install developer tools ]
"
exit 2
}
unamestr=`uname`
if [ "$unamestr" == 'Linux' ]; then
prof=~/.bashrc
mini_conda_url=https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
matplotlibdir=~/.config/matplotlib
elif [ "$unamestr" == 'FreeBSD' ] || [ "$unamestr" == 'Darwin' ]; then
prof=~/.bash_profile
mini_conda_url=https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
matplotlibdir=~/.matplotlib
else
echo "Unsupported environment. Exiting."
exit
fi
# execute the user's profile
source $prof
# Parse the command line arguments passed in by the user
# PYVER=$DEFAULT_PYVER
input_yaml_file=source_environment.yml
developer=false
# Default is to use conda to install since mamba fails on some systems
install_pgm=conda
while getopts "p:d" options; do
case "${options}" in #
# p)
# PYVER=$OPTARG
# ;;
d)
developer=true
;;
*) # If unknown (any other) option:
usage # Exit abnormally.
;;
esac
done
echo "YAML file to use as input: ${input_yaml_file}"
#echo "Using python version ${PYVER}"
# Name of virtual environment, pull from yml file
VENV=`grep "name:" source_environment.yml | cut -f2 -d ":" | sed 's/ //g'`
echo "#####Environment to create: '${VENV}'"
# Where is conda installed?
CONDA_LOC=`which conda`
echo "######Location of conda install: ${CONDA_LOC}"
# Are we in an environment
CURRENT_ENV=`conda info --envs | grep "*"`
echo "Current conda environment: ${CURRENT_ENV}"
# create a matplotlibrc file with the non-interactive backend "Agg" in it.
if [ ! -d "$matplotlibdir" ]; then
mkdir -p $matplotlibdir
# if mkdir fails, bow out gracefully
if [ $? -ne 0 ];then
echo "Failed to create matplotlib configuration file. Exiting."
exit 1
fi
fi
matplotlibrc=$matplotlibdir/matplotlibrc
if [ ! -e "$matplotlibrc" ]; then
echo "backend : Agg" > "$matplotlibrc"
echo "NOTE: A non-interactive matplotlib backend (Agg) has been set for this user."
elif grep -Fxq "backend : Agg" $matplotlibrc ; then
:
elif [ ! grep -Fxq "backend" $matplotlibrc ]; then
echo "backend : Agg" >> $matplotlibrc
echo "NOTE: A non-interactive matplotlib backend (Agg) has been set for this user."
else
sed -i '' 's/backend.*/backend : Agg/' $matplotlibrc
echo "###############"
echo "NOTE: $matplotlibrc has been changed to set 'backend : Agg'"
echo "###############"
fi
# Is conda installed?
conda --version
if [ $? -ne 0 ]; then
echo "No conda detected, installing miniconda..."
command -v curl >/dev/null 2>&1 || { echo >&2 "Script requires curl but it's not installed. Aborting."; exit 1; }
curl -L $mini_conda_url -o miniconda.sh;
# if curl fails, bow out gracefully
if [ $? -ne 0 ];then
echo "Failed to download miniconda installer shell script. Exiting."
exit 1
fi
echo "Install directory: $HOME/miniconda"
bash miniconda.sh -f -b -p $HOME/miniconda
# if miniconda.sh fails, bow out gracefully
if [ $? -ne 0 ];then
echo "Failed to run miniconda installer shell script. Exiting."
exit 1
fi
. $HOME/miniconda/etc/profile.d/conda.sh
# remove the shell script
rm miniconda.sh
else
echo "conda detected, installing $VENV environment..."
fi
# Update the conda tool
CVNUM=`conda -V | cut -f2 -d' '`
LATEST=`conda search conda | tail -1 | tr -s ' ' | cut -f2 -d" "`
echo "${CVNUM}"
echo "${LATEST}"
if [ ${LATEST} != ${CVNUM} ]; then
echo "##################Updating conda tool..."
CVERSION=`conda -V`
echo "Current conda version: ${CVERSION}"
conda update -n base -c defaults conda -y
CVERSION=`conda -V`
echo "New conda version: ${CVERSION}"
echo "##################Done updating conda tool..."
else
echo "conda ${CVNUM} already matches latest version ${LATEST}. No update required."
fi
# Start in conda base environment
echo "Activate base virtual environment"
# The documentation for this command says:
# "writes the shell code to register the initialization code for the conda shell code."
# The ShakeMap developers will buy an ice cream for anyone who can explain the previous sentence.
# whatever it does, it is crucially important for being able to activate a conda environment
# inside a shell script.
eval "$(conda shell.bash hook)"
conda activate base
if [ $? -ne 0 ]; then
"Failed to activate conda base environment. Exiting."
exit 1
fi
# Remove existing shakemap environment if it exists
conda remove -y -n $VENV --all
conda clean -y --all
# Install the virtual environment
# echo "Creating new environment from environment file: ${input_yaml_file} with python version ${PYVER}"
echo "Creating new environment from environment file: ${input_yaml_file}"
# change python version in yaml file to match PYVER
# sed 's/python='"${DEFAULT_PYVER}"'/python='"${PYVER}"'/' "${input_yaml_file}" > tmp.yml
# ${install_pgm} env create -f tmp.yml
${install_pgm} env create -f ${input_yaml_file}
# rm tmp.yml
# Bail out at this point if the conda create command fails.
# Clean up zip files we've downloaded
if [ $? -ne 0 ]; then
echo "Failed to create conda environment. Resolve any conflicts, then try again."
exit 1
fi
# Activate the new environment
echo "Activating the $VENV virtual environment"
conda activate $VENV
# if conda activate fails, bow out gracefully
if [ $? -ne 0 ];then
echo "Failed to activate ${VENV} conda environment. Exiting."
exit 1
fi
# The presence of a __pycache__ folder in bin/ can cause the pip
# install to fail... just to be safe, we'll delete it here.
if [ -d bin/__pycache__ ]; then
rm -rf bin/__pycache__
fi
if $developer; then
echo "############# Installing shakemap with developer tools ##############"
conda install mathjax
if ! pip install -e '.[dev,test,doc]' ; then
echo "Installation of shakemap failed."
exit 1
fi
else
echo "############# Installing shakemap ##############"
if ! pip install -e . ; then
echo "Installation of shakemap failed."
exit 1
fi
fi
echo "Reminder: Run 'conda activate shakemap' to enable the ShakeMap environment."