aboutsummaryrefslogtreecommitdiff
path: root/caldp/astrometry/README.md
diff options
context:
space:
mode:
authorMatt Rendina <rendinam@users.noreply.github.com>2020-05-22 16:57:30 -0400
committerGitHub <noreply@github.com>2020-05-22 16:57:30 -0400
commit89b3637033d327cdcae7a1797e1379cff67e9c32 (patch)
treeaff70c79cc66372e4332b7d0d84e2868f4d6fff1 /caldp/astrometry/README.md
parentc357e43a443cb66091afc26bfeca873121e4a488 (diff)
downloadastroconda-releases-89b3637033d327cdcae7a1797e1379cff67e9c32.tar.gz
Halt astrometery delivery cycle per release coordinator's request. (#126)
It will need to be restarted from scratch when the astrometry changes are to be re-introduced. The directory is preserved for the time being with a 'HALTED' identifier for reference.
Diffstat (limited to 'caldp/astrometry/README.md')
-rw-r--r--caldp/astrometry/README.md60
1 files changed, 0 insertions, 60 deletions
diff --git a/caldp/astrometry/README.md b/caldp/astrometry/README.md
deleted file mode 100644
index 17c6651..0000000
--- a/caldp/astrometry/README.md
+++ /dev/null
@@ -1,60 +0,0 @@
-# Installing
-
-Currently, conda is required to manage installation of the enviornment. A fresh
-installation of Anaconda3 or Miniconda3 is 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 now taken directly from PyPI or development repositories as
-needed, so conda's ability to install hybrid conda/pip environments from a YAML
-specification 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/astrometry/latest-linux.yml
-$ conda env create -n caldp_astrometery --file latest-linux.yml
-```
-
-
-### Activate the pipeline environment
-
-```
-$ source activate caldp_astrometry
-```
-
-Each new delivery iteration of the calibration environment will 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
-```
-