Forum OpenACS Q&A: Re: wrong PATH for postgres following installation doc -PLS HLP

.bashrc is used by non-login shells.  Your .bash_profile (login shell setup) must explicitly source .bashrc.

Something like this at the top of .bash_profile help, usually:

# source .bashrc if one exists
if [ -f ~/.bashrc ]; then . ~/.bashrc; fi