aboutsummaryrefslogtreecommitdiff
path: root/caldp/mvmbeta/README.md
diff options
context:
space:
mode:
authorDeliveryAutomation <automated@stsci.edu>2022-03-11 19:41:27 -0500
committerDeliveryAutomation <automated@stsci.edu>2022-03-11 19:41:27 -0500
commitaeaaca27b6c971006c9645ee27a5bc1c9c1acc14 (patch)
treedb426c316275f5068ab5b2b3e01e03d1e6345ad9 /caldp/mvmbeta/README.md
parent3eb1a65b3d485bbcc99bd3d0b5e66aea610778cf (diff)
downloadastroconda-releases-aeaaca27b6c971006c9645ee27a5bc1c9c1acc14.tar.gz
Automatic commit of CALDP_mvmbeta_CAL_rc1
Diffstat (limited to 'caldp/mvmbeta/README.md')
-rw-r--r--caldp/mvmbeta/README.md49
1 files changed, 49 insertions, 0 deletions
diff --git a/caldp/mvmbeta/README.md b/caldp/mvmbeta/README.md
new file mode 100644
index 0000000..2db7e3c
--- /dev/null
+++ b/caldp/mvmbeta/README.md
@@ -0,0 +1,49 @@
+# Installing
+Currently, conda is required to manage installation of the environment. A fresh installation of Anaconda3 or Miniconda3is not required for each HCALDP release, however. An existing conda installation may be used. The method described here
+ allows for multiple, entirely segregated, pipeline installations.
+
+A `bash`-compatible shell is required for all steps below.
+
+Python dependencies are taken directly from PyPI or development repositories as needed, so conda's ability to install hybrid conda/pip environments from a YAMLspecification is used. This requires first downloading the specification file and then creating the environment with it.
+
+## For existing conda installations:
+
+### Install the pipeline environment
+```
+$ curl -O https://ssb.stsci.edu/releases/caldp/mvmbeta/latest-linux.yml
+$ conda env create -n caldp_mvmbeta --file latest-linux.yml
+```
+### Activate the pipeline environment
+
+```
+$ source activate caldp_mvmbeta
+```
+
+Each new delivery iteration of the calibration environmentwill need to be installed using the above commands.
+
+------
+
+## If conda is not yet installed
+
+If the conda tool is not available on the target system, it will need to be
+installed before the calibration environment can be installed.
+
+### Installing conda
+
+For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install
+
+**Miniconda:**
+
+```
+$ wget https://repo.anaconda.com/miniconda/Miniconda3-py37_4.8.2-Linux-x86_64.sh
+$ bash Miniconda3-py37_4.8.2-Linux-x86_64.sh
+$ export PATH=$HOME/miniconda3/bin:$PATH
+```
+
+**Anaconda (if preferred):**
+
+```
+$ wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh
+$ bash Anaconda3-2019.10-Linux-x86_64.sh
+$ export PATH=$HOME/anaconda3/bin:$PATH
+```