From b0fb3f8056fbffffcae46ec1e285e82f6805dc7f Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 6 Jan 2017 16:47:00 -0500 Subject: Fix installation section; Make --file relative --- README.md | 14 ++++++++------ 1 file 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. -- cgit