aboutsummaryrefslogtreecommitdiff
path: root/de/f/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'de/f/README.md')
-rw-r--r--de/f/README.md48
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
+```