diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2017-12-22 16:02:49 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-22 16:02:49 -0500 |
commit | 9a343f5e03d56be3b43b4c2295d28b9c0997045b (patch) | |
tree | 1758d492887ba836a8725eb151b5f1f7ba34a426 /da/4/README.md | |
parent | 6b207c45e6e8e0b6f46b6cb16fce9a5b52f11822 (diff) | |
parent | 5a2047eeb41e47c73cf64359b26ab17f8a0d2736 (diff) | |
download | astroconda-releases-9a343f5e03d56be3b43b4c2295d28b9c0997045b.tar.gz |
Merge pull request #20 from jhunkeler/da-4
Add DA-4
Diffstat (limited to 'da/4/README.md')
-rw-r--r-- | da/4/README.md | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/da/4/README.md b/da/4/README.md new file mode 100644 index 0000000..86ea03e --- /dev/null +++ b/da/4/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each DA release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n da-4 --file http://ssb.stsci.edu/releases/da/4/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n da-4 --file http://ssb.stsci.edu/releases/da/4/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-5.0.1-Linux-x86_64.sh +$ bash Anaconda3-5.0.1-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.3.30-Linux-x86_64.sh +$ bash Miniconda3-4.3.30-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n da-4 --file http://ssb.stsci.edu/releases/da/4/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate da-4 +``` |