diff options
author | Brendan Gannon <brendan.gannon2@gmail.com> | 2022-03-30 16:48:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-30 16:48:17 -0400 |
commit | 5737bb528e0b74b766d9785dfb3b6df72dfe1e69 (patch) | |
tree | 28beb597540a91f50aa1d91e616dfd1ba9384a0d /de/f/README.md | |
parent | 073eea8f843fd20f0ad756453e673d886f58fd4d (diff) | |
parent | 826849cf97ba604e0cc2f524cfccb191cdb3b5ba (diff) | |
download | astroconda-releases-5737bb528e0b74b766d9785dfb3b6df72dfe1e69.tar.gz |
Merge pull request #144 from larrybradley/debuild-f
Add DE Build-F environments
Diffstat (limited to 'de/f/README.md')
-rw-r--r-- | de/f/README.md | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/de/f/README.md b/de/f/README.md new file mode 100644 index 0000000..170317c --- /dev/null +++ b/de/f/README.md @@ -0,0 +1,48 @@ +# 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 env create -n de-f --file http://ssb.stsci.edu/releases/de/f/latest-linux.yml +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ curl https://repo.anaconda.com/miniconda/Miniconda3-py39_4.11.0-MacOSX-x86_64.sh --output miniconda.sh +$ bash miniconda.sh -b -p $HOME/miniconda +$ bash +$ export PATH="$HOME/miniconda/bin:$PATH" +``` + +**For Anaconda (if preferred):** + +``` +# wget https://repo.anaconda.com/archive/Anaconda3-2021.11-MacOSX-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +## Install the environment + +``` +$ conda env create -n de-f --file http://ssb.stsci.edu/releases/de/e/latest-macosx.yml +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the environment + +``` +$ source activate de-f +``` |