Versions Compared

Key

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

...

Avoid sourcing the psconda environment when accessing the NoMachine servers.  To add the conda environment to your bashrc file, you can do profile edit $HOME/.bashrc with the following content:

  • 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

...