aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2017-01-06 16:47:00 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2017-01-06 16:47:00 -0500
commitb0fb3f8056fbffffcae46ec1e285e82f6805dc7f (patch)
tree77b1a2e3cad4589160000c07265416f479d30727
parent53cec9023c21084777765e4daac202f3a52ed0d9 (diff)
downloadastroconda-dms-hst-fixup-readme.tar.gz
Fix installation section; Make --file relativefixup-readme
-rw-r--r--README.md14
1 files changed, 8 insertions, 6 deletions
diff --git a/README.md b/README.md
index 9d83651..3adf973 100644
--- a/README.md
+++ b/README.md
@@ -10,27 +10,29 @@ Installing a fresh pipeline environment
```
# Anaconda
- $ wget https://repo.continuum.io/archive/Anaconda2-4.2.0-Linux-x86_64.sh
- $ bash Anaconda3-4.1.0-Linux-x86_64.sh
+ $ wget https://repo.continuum.io/archive/Anaconda3-4.2.0-Linux-x86_64.sh
+ $ bash Anaconda3-4.2.0-Linux-x86_64.sh
$ export PATH=$HOME/anaconda3/bin:$PATH
# Miniconda (if preferred)
- $ wget https://repo.continuum.io/miniconda/Miniconda2-4.1.11-Linux-x86_64.sh
- $ bash Miniconda3-4.0.5-Linux-x86_64.sh
+ $ wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
+ $ bash Miniconda3-latest-Linux-x86_64.sh
$ export PATH=$HOME/miniconda3/bin:$PATH
```
+
Notes
-----
A fresh installation of Anaconda3 or Miniconda3 is not required for each HSTDP release. The method described here allows multiple, entirely segregated pipeline installations. To facilitate ease of use, all future Anaconda3-based release messages will provide a "one-liner" installation procedure. This text will precede the generic installation instructions. The format will be as follows:
For existing Anaconda3 or Miniconda3 installations:
```
-$ conda create -n %NAME_%YEAR_%BUILD --file http://ssb.stsci.edu/conda/%NAME-%YEAR.$BUILD/%NAME-%YEAR.%BUILD-%PLATFORM-%PYTHON_VERSION.%ITERATION.txt
+$ conda create -n %NAME_%YEAR_%BUILD --file %NAME-%YEAR.$BUILD/%NAME-%YEAR.%BUILD-%PLATFORM-%PYTHON_VERSION.%ITERATION.txt
```
As bug fixes are announced, your pipeline software may be updated by issuing the command:
```
- $ conda update --file http://ssb.stsci.edu/conda/%NAME-%YEAR.$BUILD/%NAME-%YEAR.%BUILD-%PLATFORM-%PYTHON_VERSION.%ITERATION.txt
+# (%ITERATION denotes the next available update, i.e. 0.txt, 1.txt, 2.txt, etc.)
+$ conda update --file %NAME-%YEAR.$BUILD/%NAME-%YEAR.%BUILD-%PLATFORM-%PYTHON_VERSION.%ITERATION.txt
```
Under Anaconda, updates will not be supplied via external installation addons as either tarballs or scripts. Also keep in mind, Conda, the Anaconda package manager, may prompt you automatically to upgrade packages deemed out of date.