Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Set an alias to source it manually:  alias psconda='source /reg/g/psdm/etc/psconda.sh' 
  • Only source the environment on the ana nodes 
    • edit $HOME/.bashrc and add the content below:
Code Block
titlebashrc
export MN=$(uname -n)
if [[ "$MN" =~ ^psana ]]; then
    source /reg/g/psdm/etc/psconda.sh
fi

...