diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2017-01-06 16:47:00 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2017-01-06 16:47:00 -0500 |
commit | b0fb3f8056fbffffcae46ec1e285e82f6805dc7f (patch) | |
tree | 77b1a2e3cad4589160000c07265416f479d30727 | |
parent | 53cec9023c21084777765e4daac202f3a52ed0d9 (diff) | |
download | astroconda-dms-hst-fixup-readme.tar.gz |
Fix installation section; Make --file relativefixup-readme
-rw-r--r-- | README.md | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -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. |