aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBrendan Gannon <bgannon@stsci.edu>2021-08-12 10:31:46 -0400
committerBrendan Gannon <bgannon@stsci.edu>2021-08-12 10:31:46 -0400
commit0779f18950c08afca7b51ad7e418763666cba071 (patch)
tree7881f5b28b77b1b1f78f1069e06de23619710277 /README.md
downloadastroconda-releases-testing-0779f18950c08afca7b51ad7e418763666cba071.tar.gz
initial commitinit
Diffstat (limited to 'README.md')
-rw-r--r--README.md28
1 files changed, 28 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..7a8ffc0
--- /dev/null
+++ b/README.md
@@ -0,0 +1,28 @@
+**This repository is used for preparing and recording deliveries.**
+
+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/Miniconda3-latest-Linux-x86_64.sh
+ $ bash Miniconda3-latest-Linux-x86_64.sh
+ $ export PATH=$HOME/miniconda3/bin:$PATH
+```
+
+- Installing via our servers:
+```
+$ conda create -n %NAME_%BUILD --file http://ssb.stsci.edu/releases/%NAME/%BUILD/%NAME%-BUILD-%PLATFORM-%PYTHON_VERSION.%ITERATION.txt
+```
+
+- Installing via local filesystem:
+```
+$ 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 above allows for multiple, entirely segregated pipeline installations.