blob: a259a239ba6b4cd8f825c5c4a39f87e17b4a9864 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
**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
```
## 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:
```
$ conda create -n %NAME_%BUILD --file http://ssb.stsci.edu/astroconda-releases/%NAME/%BUILD/%NAME%-BUILD-%PLATFORM-%PYTHON_VERSION.%ITERATION.txt
```
Installing from this directory:
```
$ conda create -n %NAME_%BUILD --file %NAME/%BUILD/%NAME-%BUILD-%PLATFORM-%PYTHON_VERSION.%ITERATION.txt
```
|