Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-11030: Update newinstall instructions. #141

Merged
merged 2 commits into from
May 3, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions scripts/newinstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ n8l::miniconda::bootstrap() {
echo "Using conda at ${miniconda_path}"

# Activate the base conda environment before continuing
# shellcheck disable=SC1090
# shellcheck disable=SC1090,SC1091
source "$miniconda_path/bin/activate"

if [[ -e ${miniconda_path}/envs/${LSST_CONDA_ENV_NAME} ]]; then
Expand Down Expand Up @@ -854,10 +854,12 @@ n8l::print_greeting() {
source "${LSST_HOME}/loadLSST.zsh" # for zsh

Individual LSST packages may now be installed with the usual \`eups distrib
install\` command. For example, to install the science pipeline elements
of the LSST stack, use:
install\` command. For example, to install the latest weekly release of the
LSST Science Pipelines full distribution, use:

eups distrib install lsst_apps
eups distrib install -t w_latest lsst_distrib

An official release tag such as "v21_0_0" can also be used.

Next, read the documentation at:

Expand All @@ -869,8 +871,6 @@ n8l::print_greeting() {

Thanks!
-- The LSST Software Teams
http://dm.lsst.org/

EOF
}

Expand Down