diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2019-09-26 14:39:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-26 14:39:18 -0400 |
commit | 7310664917b3c4d7107ab5265edfb8514202ccc3 (patch) | |
tree | d9e6147a103b9ac067b6ce1c2a4ccbadeae77667 /de/a/README.md | |
parent | 1c64ab3a6b2262951ef1112ea6f0858d39eb6737 (diff) | |
parent | 73e94d1063b01e6e52bc65d83c673dde5d93b42b (diff) | |
download | astroconda-releases-testing-7310664917b3c4d7107ab5265edfb8514202ccc3.tar.gz |
DE-A build (#89)
Diffstat (limited to 'de/a/README.md')
-rw-r--r-- | de/a/README.md | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/de/a/README.md b/de/a/README.md new file mode 100644 index 0000000..b2c8b26 --- /dev/null +++ b/de/a/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each DE release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n de-a --file http://ssb.stsci.edu/releases/de/a/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n de-a --file http://ssb.stsci.edu/releases/de/a/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-2019.07-Linux-x86_64.sh +$ bash Anaconda3-2019.07-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.7.10-Linux-x86_64.sh +$ bash Miniconda3-4.7.10-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the environment + +``` +$ conda create -n de-a --file http://ssb.stsci.edu/releases/de/a/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the environment + +``` +$ source activate de-a +``` |