aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2017-01-12 12:55:32 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2017-01-12 15:12:10 -0500
commit840f7cdeed50c983cf4205397e9000cba0cd3e36 (patch)
treeb82e93d2875c9680359972238be62c386c5d494e /README.md
parent7c68c95f642688e26c3d29fb6b696d0c7607875e (diff)
downloadastroconda-releases-840f7cdeed50c983cf4205397e9000cba0cd3e36.tar.gz
Update README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/README.md b/README.md
index 7c8a3ff..4202837 100644
--- a/README.md
+++ b/README.md
@@ -1,14 +1,14 @@
**This repository is used for preparing and recording deliveries.**
-The release notes for each build are tracked and stored with the astroconda spec build which recreates the environment that was delivered
+The release notes for each build are tracked and stored with the AstroConda environment spec file used to recreate environments delivered to various pipeline teams.
## Installing a fresh pipeline environment
- Install Miniconda3
```
- $ 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
```
@@ -16,12 +16,12 @@ The release notes for each build are tracked and stored with the astroconda spec
A fresh installation of Miniconda3 is not required for each release. The method described here allows multiple, entirely segregated pipeline installations:
-For existing Miniconda3 installations:
+Installing from our servers:
```
-$ 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 http://ssb.stsci.edu/astroconda-releases/%NAME/%BUILD/%NAME-%YEAR.%BUILD-%PLATFORM-%PYTHON_VERSION.%ITERATION.txt
```
-As bug fixes are announced, your pipeline software may be updated by issuing the command:
+Installing from this directory:
```
- $ conda update --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/%BUILD/%NAME-%YEAR.%BUILD-%PLATFORM-%PYTHON_VERSION.%ITERATION.txt
```