From 93cc7caf5426b10da29017b2d6f9c10d14a39604 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Thu, 6 Jul 2017 15:52:50 -0400 Subject: Update README.md --- README.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index a259a23..7871824 100644 --- a/README.md +++ b/README.md @@ -12,16 +12,17 @@ The release notes for each build are tracked and stored with the AstroConda envi $ export PATH=$HOME/miniconda3/bin:$PATH ``` -## Note - -A fresh installation of Miniconda3 is not required for each release. The method described here allows multiple, entirely segregated pipeline installations: - -Installing from our servers: +- Installing via our servers: ``` -$ conda create -n %NAME_%BUILD --file http://ssb.stsci.edu/astroconda-releases/%NAME/%BUILD/%NAME%-BUILD-%PLATFORM-%PYTHON_VERSION.%ITERATION.txt +$ conda create -n %NAME_%BUILD --file http://ssb.stsci.edu/releases/%NAME/%BUILD/%NAME%-BUILD-%PLATFORM-%PYTHON_VERSION.%ITERATION.txt ``` -Installing from this directory: +- Installing via local filesystem: ``` -$ conda create -n %NAME_%BUILD --file %NAME/%BUILD/%NAME-%BUILD-%PLATFORM-%PYTHON_VERSION.%ITERATION.txt +$ git clone https://github.com/astroconda/astroconda-releases +$ conda create -n %NAME_%BUILD --file astroconda-releases/%NAME/%BUILD/%NAME-%BUILD-%PLATFORM-%PYTHON_VERSION.%ITERATION.txt ``` + +## Note + +A fresh installation of Miniconda3 is not required for each release. The method described here allows multiple, entirely segregated pipeline installations: -- cgit