-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathinstall.sh
More file actions
29 lines (20 loc) · 738 Bytes
/
install.sh
File metadata and controls
29 lines (20 loc) · 738 Bytes
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
#!/bin/bash
# this script must be run in interactive mode
# bash -i install.sh
#conda create -y -n synth python=3.9
conda env create -f base_env.yml
conda activate synth
conda env list
conda install pip
conda install -y -c conda-forge ngmix=1.3.9
conda install -y -c conda-forge galsim
conda install -y -c conda-forge fitsio
conda install -y -c conda-forge esutil
conda install -y -c conda-forge healpy
conda install -y -c conda-forge scikit-learn
conda install -y -c conda-forge astromatic-source-extractor
pip install git+https://github.com/esheldon/images.git \
git+https://github.com/esheldon/meds \
git+https://github.com/esheldon/psfex.git \
python setup.py install
python ./tutorial/env_checkup.py