diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2017-07-06 15:52:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-06 15:52:50 -0400 |
commit | 93cc7caf5426b10da29017b2d6f9c10d14a39604 (patch) | |
tree | 95cb064dd0ededbf43097006795d45880ed3ad96 | |
parent | 272a4150f2c16c5079517df891c6f1830ff1c60c (diff) | |
download | astroconda-releases-93cc7caf5426b10da29017b2d6f9c10d14a39604.tar.gz |
Update README.md
-rw-r--r-- | README.md | 17 |
1 files changed, 9 insertions, 8 deletions
@@ -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: |