forked from stevekm/conda-phoenix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
56 lines (42 loc) · 1.29 KB
/
Makefile
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
# makefile to setup an Anaconda installation and environment on NYULMC phoenix HPC system
SHELL:=/bin/bash
ANACONDA_MD5:=c989ecc8b648ab8a64731aaee9ed2e7e
ANACONDA_sh:=Anaconda3-5.0.1-Linux-x86_64.sh
# path to installation location
INSTALL_DIR:=${CURDIR}
# YAML file to use for setting up Conda environment
ENV_YAML:=xmltodict.yml
ENV_NAME:=xmltodict
# no default action to take
none:
# ~~~~~ INSTALLATION ~~~~~ #
${ANACONDA_sh}:
wget https://repo.continuum.io/archive/$(ANACONDA_sh)
# download the script
download: $(ANACONDA_sh)
# check md5sum
verify: download
AnacondaMD5="$$(md5sum $(ANACONDA_sh) | cut -d ' ' -f1)" && \
if [ "$$AnacondaMD5" == '$(ANACONDA_MD5)' ]; then echo "md5sum matches"; fi
# install Anaconda
install: verify
bash $(ANACONDA_sh) -b -p $(INSTALL_DIR)/anaconda
# ~~~~~ SETUP ~~~~~ #
# create the Conda environment
setup:
. activate_anaconda.sh && \
conda env create -f $(ENV_YAML)
test:
. activate_anaconda.sh && \
source activate $(ENV_NAME) && \
which python && \
python -c 'import $(ENV_NAME); print($(ENV_NAME).__file__)'
# ~~~~~ CLEAN UP ~~~~~ #
# remove the Conda environment from the Conda installation
remove:
. activate_anaconda.sh && \
conda remove --name $(ENV_NAME) --all -y
# remove files to start over
clean: remove
rm -f $(ANACONDA_sh)*
rm -rf anaconda